1
0
mirror of https://github.com/go-task/task.git synced 2025-07-07 01:09:23 +02:00

Merge pull request #387 from sheldonhull/patch-1

feat: improve installation script documentation for shell installs
This commit is contained in:
Andrey Nering
2020-11-08 11:46:58 -03:00
committed by GitHub

View File

@ -73,7 +73,13 @@ 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
sh -c "$(curl -ssL 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
```
> This method will download the binary on the local `./bin` directory by default.