From 35cb9efa37973561396510e82dd7df37346bd848 Mon Sep 17 00:00:00 2001 From: rxzheng Date: Sun, 7 Jan 2024 20:31:09 +1100 Subject: [PATCH] Added 'sudo' to macOS command, as it needs administrator privileges added 'sudo' to mkdir -p /usr/local/bin... because its required to create directories in that location. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 439ca6a..ede6216 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ sudo curl -o /usr/share/man/man1/tt.1.gz -L https://github.com/lemnos/tt/release ## OSX ``` -mkdir -p /usr/local/bin /usr/local/share/man/man1 # Usually created by brew +sudo mkdir -p /usr/local/bin /usr/local/share/man/man1 # Usually created by brew sudo curl -L https://github.com/lemnos/tt/releases/download/v0.4.2/tt-osx -o /usr/local/bin/tt && sudo chmod +x /usr/local/bin/tt sudo curl -o /usr/local/share/man/man1/tt.1.gz -L https://github.com/lemnos/tt/releases/download/v0.4.2/tt.1.gz