Skip to content

Commit

Permalink
update README
Browse files Browse the repository at this point in the history
Just found out not all platforms standardize on POSIX long flag names,
only short flag names 😡. Much as I would prefer to use long flags for
documentation, it is simply impossible.
  • Loading branch information
bokwoon95 committed Apr 30, 2024
1 parent ebf55b9 commit 09e9688
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ See [START\_HERE.md](https://github.com/bokwoon95/wgo/blob/main/START_HERE.md).

```shell
# macOS/Linux (replace wgo-macos-apple-silicon with wgo-macos | wgo-linux | wgo-linux-arm)
curl --location --output wgo "$(curl 'https://api.github.com/repos/bokwoon95/wgo/releases/latest' | grep '"browser_download_url": ".*wgo-macos-apple-silicon"' | xargs | cut --delimiter ' ' --fields 2)"
curl --location --output wgo "$(curl 'https://api.github.com/repos/bokwoon95/wgo/releases/latest' | grep '"browser_download_url": ".*wgo-macos-apple-silicon"' | xargs | cut -d ' ' -f 2)"
```

```powershell
Expand Down

0 comments on commit 09e9688

Please sign in to comment.