From 0740fd9c0f657e34e2adda10b0ecc3c8819958cb Mon Sep 17 00:00:00 2001 From: chiefMarlin <96321026+chiefMarlin@users.noreply.github.com> Date: Fri, 11 Aug 2023 16:53:04 -0400 Subject: [PATCH] Fix readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4c47d4a..98f3766 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ A simple command-line tool to manage GitHub releases. With this tool, you can cr ## Installation ### Quick install ```bash -name="releaseMaker"; os=$(uname | tr '[:upper:]' '[:lower:]'); arch=$(uname -m); case $arch in x86_64) arch="amd64" ;; arm64) arch="arm64" ;; esac; url="https://github.com/8ff/releaseMaker/releases/download/latest/${name}.${os}.${arch}"; curl -L $url -o ${name} && chmod +x ${name} +repo="releaseMaker"; name="releaseMaker"; os=$(uname | tr '[:upper:]' '[:lower:]'); arch=$(uname -m); case $arch in x86_64) arch="amd64" ;; arm64) arch="arm64" ;; esac; url="https://github.com/8ff/${repo}/releases/download/latest/${name}.${os}.${arch}"; curl -L $url -o ${name} && chmod +x ${name} ``` Grab a binary from releases or clone the repository and build the project using Go: