1
0
mirror of https://github.com/go-task/task.git synced 2025-05-19 22:33:35 +02:00

Update curl arguments in installation.md

Double -s argument does not make sense according to curl manual page.
-s stands for silent, while -S (capital S) stands for showing the error.
When used in combination, curl shows an error message if it fails, but disables progress meter.

Finally, in the end of sh command there is -d, which stands for debug and contradicts -sS curl arguments.
I suggest to remove curl silencers all together, because more debug is better in CIs. I also suggest to use --location instead of -L for clarity.
This commit is contained in:
Eugene Zhukov 2020-11-17 10:02:06 +02:00 committed by GitHub
parent b136166fc9
commit b7112e02db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -74,11 +74,11 @@ easily generating this script.
```bash
# For Default Installion to ./bin with debug logging
sh -c "$(curl -ssL https://taskfile.dev/install.sh)" -- -d
sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d
# For Installation To /usr/local/bin for userwide access with debug logging
# May require sudo sh
sh -c "$(curl -ssL https://taskfile.dev/install.sh)" -- -d -b /usr/local/bin
sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d -b /usr/local/bin
```