From 6c625b3359d6dba867c38f918808f84fbeab0db9 Mon Sep 17 00:00:00 2001 From: sheldonhull Date: Wed, 14 Oct 2020 22:30:19 -0500 Subject: [PATCH] fix: typo on curl install comment fix from url to curl --- docs/installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index c34bd76b..50ccabc2 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -74,10 +74,10 @@ easily generating this script. ```bash # For Default Installion to ./bin with debug logging -url -sL https://taskfile.dev/install.sh | sh -s -- -d +curl -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 +curl -sL https://taskfile.dev/install.sh | sudo sh -s -- -d -b /usr/local/bin ``` > This method will download the binary on the local `./bin` directory by default.