1
0
mirror of https://github.com/go-task/task.git synced 2024-12-12 10:45:49 +02:00

feat: improve installation script documentation for shell installs

- The default didn't work well for me out of the gate.
- This is the modified version to support passing in the arguments easily as well as an example for installing to `/usr/local/bin` for using in Codespaces or equivalent development workflow.
This commit is contained in:
sheldonhull 2020-10-07 14:57:25 -05:00 committed by GitHub
parent ce4ac97269
commit 71b7d062d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -73,7 +73,11 @@ scenarios like CIs. Many thanks to [GoDownloader][godownloader] for allowing
easily generating this script.
```bash
curl -sL https://taskfile.dev/install.sh | sh
# For Default Installion to ./bin with debug logging
url -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
```
> This method will download the binary on the local `./bin` directory by default.