From f667989933a44256bdeaa12f950d420dd8f89465 Mon Sep 17 00:00:00 2001 From: Patrick Schratz Date: Wed, 23 Oct 2024 10:42:27 +0200 Subject: [PATCH] docs: update installation instructions (#116) Co-authored-by: Robert Kaussow --- README.md | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 07a85d4..2caf7fc 100644 --- a/README.md +++ b/README.md @@ -16,8 +16,21 @@ Semantic versioning tool for git based on conventional commits. Prebuilt multi-arch binaries are available for Linux and macOS. ```Shell -curl -SsfL https://github.com/thegeeklab/git-sv/releases/latest/download/git-sv-linux-amd64 -o /usr/local/bin/git-sv -chmod +x /usr/local/bin/git-sv +# Linux amd64 +curl -SsfL https://github.com/thegeeklab/git-sv/releases/latest/download/git-sv-linux-amd64 -o ~/.local/bin/git-sv +chmod +x ~/.local/bin/git-sv +``` + +```Shell +# macOS arm +curl -SsfL https://github.com/thegeeklab/git-sv/releases/latest/download/git-sv-darwin-10.12-arm64 -o ~/.local/bin/git-sv +chmod +x ~/.local/bin/git-sv +``` + +```Shell +# macOS intel +curl -SsfL https://github.com/thegeeklab/git-sv/releases/latest/download/git-sv-darwin-10.12-amd64 -o ~/.local/bin/git-sv +chmod +x ~/.local/bin/git-sv ``` ## Build