Skip to content

Commit b136166

Browse files
authored
Merge pull request #387 from sheldonhull/patch-1
feat: improve installation script documentation for shell installs
2 parents 60759a4 + 75727c3 commit b136166

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

docs/installation.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,13 @@ scenarios like CIs. Many thanks to [GoDownloader][godownloader] for allowing
7373
easily generating this script.
7474

7575
```bash
76-
curl -sL https://taskfile.dev/install.sh | sh
76+
# 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+
7783
```
7884

7985
> This method will download the binary on the local `./bin` directory by default.

0 commit comments

Comments
 (0)