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:
Chris
2022-11-29 14:29:04 -07:00
parent e47c3cd3f5
commit 8dbd9840b4
3 changed files with 15 additions and 21 deletions

View File

@ -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