1
0
mirror of https://github.com/go-task/task.git synced 2025-01-14 04:35:50 +02:00

fix: typo on curl install comment

fix from url to curl
This commit is contained in:
sheldonhull 2020-10-14 22:30:19 -05:00 committed by GitHub
parent 71b7d062d5
commit 6c625b3359
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -74,10 +74,10 @@ easily generating this script.
```bash
# For Default Installion to ./bin with debug logging
url -sL https://taskfile.dev/install.sh | sh -s -- -d
curl -sL https://taskfile.dev/install.sh | sh -s -- -d
# For Installation To /usr/local/bin with debug logging
url -sL https://taskfile.dev/install.sh | sudo sh -s -- -b /usr/local/bin -d
curl -sL https://taskfile.dev/install.sh | sudo sh -s -- -d -b /usr/local/bin
```
> This method will download the binary on the local `./bin` directory by default.