1
0
mirror of https://github.com/go-task/task.git synced 2025-04-21 12:17:07 +02:00

Merge pull request #406 from ezhukov/patch-2

Update curl arguments in installation.md
This commit is contained in:
Andrey Nering 2020-12-26 15:00:04 -03:00 committed by GitHub
commit be209cb7b6
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
```