Update install.sh (#246)

Add check for bzip2 command existance
pull/250/head
Šimon Woidig 2 years ago committed by GitHub
parent 74979e9a2a
commit d0c4a32879
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -31,6 +31,11 @@ else
fi
echo $ARCH
if ! command -v bzip2 &>/dev/null; then
echo "Missing bzip2 command. Please install the bzip2 package for your system."
exit 1
fi
wget -qO - https://api.github.com/repos/cupcakearmy/autorestic/releases/latest \
| grep "browser_download_url.*_${OS}_${ARCH}" \
| cut -d : -f 2,3 \

Loading…
Cancel
Save