We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 60759a4 + 75727c3 commit b136166Copy full SHA for b136166
docs/installation.md
@@ -73,7 +73,13 @@ scenarios like CIs. Many thanks to [GoDownloader][godownloader] for allowing
73
easily generating this script.
74
75
```bash
76
-curl -sL https://taskfile.dev/install.sh | sh
+# For Default Installion to ./bin with debug logging
77
+sh -c "$(curl -ssL https://taskfile.dev/install.sh)" -- -d
78
+
79
+# For Installation To /usr/local/bin for userwide access with debug logging
80
+# May require sudo sh
81
+sh -c "$(curl -ssL https://taskfile.dev/install.sh)" -- -d -b /usr/local/bin
82
83
```
84
85
> This method will download the binary on the local `./bin` directory by default.
0 commit comments