Update shellcheck binary url

This commit is contained in:
flyingscorpio@arch-desktop 2020-09-05 11:11:31 +02:00
parent c7658f90e4
commit 8706a1db2a

View file

@ -18,7 +18,7 @@ if ! sudo pacman -S --needed shellcheck; then
fi fi
cd ~/Downloads || exit 1 cd ~/Downloads || exit 1
echo " Downloading shellcheck ${scversion} binary for ${architechture}..." 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 " ${GREEN}Successfully downloaded and extracted shellcheck.${NC}"
echo " Copying executable to /usr/bin/ ..." echo " Copying executable to /usr/bin/ ..."
sudo cp "shellcheck-${scversion}/shellcheck" /usr/bin/ && shellcheck --version sudo cp "shellcheck-${scversion}/shellcheck" /usr/bin/ && shellcheck --version