Skip to content
This repository has been archived by the owner on Jun 9, 2024. It is now read-only.

Commit

Permalink
Fix install script
Browse files Browse the repository at this point in the history
  • Loading branch information
containerscrew committed Nov 18, 2023
1 parent 15da740 commit 63f66f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ download_release() {
tmpdir=$(mktemp -d)

cd "$tmpdir"
echo -e "Downloading... ${LATEST_VERSION}/${PROJECT}-${OS}-${cli_arch}.zip \n"
# shellcheck disable=SC2059
printf "Downloading... ${LATEST_VERSION}/${PROJECT}-${OS}-${cli_arch}.zip \n"
# shellcheck disable=SC2086
curl -L --fail --remote-name-all https://github.com/containerscrew/${PROJECT}/releases/download/"${LATEST_VERSION}"/${PROJECT}-"${OS}"-${cli_arch}.zip
unzip ${PROJECT}-"${OS}"-"${cli_arch}".zip ${PROJECT}
Expand Down

0 comments on commit 63f66f7

Please sign in to comment.