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.
1 parent 6c625b3 commit 75727c3Copy full SHA for 75727c3
docs/installation.md
@@ -74,10 +74,12 @@ easily generating this script.
74
75
```bash
76
# For Default Installion to ./bin with debug logging
77
-curl -sL https://taskfile.dev/install.sh | sh -s -- -d
+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
-# For Installation To /usr/local/bin with debug logging
-curl -sL https://taskfile.dev/install.sh | sudo sh -s -- -d -b /usr/local/bin
83
```
84
85
> This method will download the binary on the local `./bin` directory by default.
0 commit comments