mirror of
https://github.com/rfvgyhn/min-ed-launcher.git
synced 2026-02-04 17:45:42 +00:00
remove support for reading launcher args from STDIN
removed because trying to read from STDIN in cases where it did and didn't have available data was more trouble than it was worth. Just use command substitution instead of piping to get launch params from other tools fixes #74
This commit is contained in:
@ -121,9 +121,9 @@ Either configure the Epic client and use the provided Bootstrap exe or use [lege
|
||||
This method utilizes [legendary].
|
||||
|
||||
1. Ensure you've authenticated, installed Elite Dangerous via [legendary] and setup your wine prefix
|
||||
2. Use the `--dry-run` flag and pipe the arguments to `MinEdLauncher`
|
||||
2. Use the `--dry-run` flag and pass the arguments to `MinEdLauncher` via command substitution
|
||||
```sh
|
||||
legendary launch --dry-run 9c203b6ed35846e8a4a9ff1e314f6593 2> >(grep "Launch parameters") | cut -d':' -f 3- | WINEPREFIX=/your/wine/prefix /path/to/MinEdLauncher /autorun /edh /autoquit
|
||||
WINEPREFIX=/your/wine/prefix /path/to/MinEdLauncher $(legendary launch --dry-run 9c203b6ed35846e8a4a9ff1e314f6593 2>&1 | grep "Launch parameters" | cut -d':' -f 3-) /autorun /edh /autoquit
|
||||
```
|
||||
|
||||
#### Frontier
|
||||
|
||||
Reference in New Issue
Block a user