From 8706a1db2a4488feae7db53c4816037d00396edd Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Sat, 5 Sep 2020 11:11:31 +0200 Subject: [PATCH] Update shellcheck binary url --- shellcheck_binary_fix.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shellcheck_binary_fix.sh b/shellcheck_binary_fix.sh index 907760c..2bf2754 100755 --- a/shellcheck_binary_fix.sh +++ b/shellcheck_binary_fix.sh @@ -18,7 +18,7 @@ if ! sudo pacman -S --needed shellcheck; then fi cd ~/Downloads || exit 1 echo " Downloading shellcheck ${scversion} binary for ${architechture}..." - if wget -qO- "https://storage.googleapis.com/shellcheck/shellcheck-${scversion?}.linux.${architechture?}.tar.xz" | tar -xJv; then + if wget -qO- "https://github.com/koalaman/shellcheck/releases/download/${scversion?}/shellcheck-${scversion?}.linux.${architechture?}.tar.xz" | tar -xJv; then echo " ${GREEN}Successfully downloaded and extracted shellcheck.${NC}" echo " Copying executable to /usr/bin/ ..." sudo cp "shellcheck-${scversion}/shellcheck" /usr/bin/ && shellcheck --version