From 71b7d062d586ab1ae244fee4e0ca250be8344111 Mon Sep 17 00:00:00 2001 From: sheldonhull Date: Wed, 7 Oct 2020 14:57:25 -0500 Subject: [PATCH] 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. --- docs/installation.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/installation.md b/docs/installation.md index da7e55af..c34bd76b 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -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.