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