change from wget to curl

This commit is contained in:
Bryson Steck 2022-06-04 16:26:37 -06:00
parent e28ec48dda
commit aa73c77e0d
2 changed files with 11 additions and 6 deletions

1
.gitignore vendored
View file

@ -16,3 +16,4 @@
# Other possible binaries that might be lurking # Other possible binaries that might be lurking
*.zip *.zip
*.7z *.7z
*.tar.gz

View file

@ -29,13 +29,17 @@ fi
# check if correct programs are installed ---------------------------------------- # check if correct programs are installed ----------------------------------------
# wget ------ # curl ------
type wget type curl
ERROR="$?" ERROR="$?"
if [[ ERROR -ne 0 ]]; then if [[ ERROR -ne 0 ]]; then
echo echo
echo "You must install 'wget' in order for this script to work correctly. Please consult your system's package manager." echo "You must install 'curl' in order for this script to work correctly."
if [[ "$OSTYPE" == "darwin"* ]]; then
echo "Try running 'xcode-select --install'."
else
echo "Please consult your system's package manager."
exit 0 exit 0
fi fi
@ -57,14 +61,14 @@ if [[ ERROR -ne 0 ]]; then
arch=$(uname -m) arch=$(uname -m)
if [[ "$OSTYPE" == "linux-gnu"* ]]; then if [[ "$OSTYPE" == "linux-gnu"* ]]; then
if [[ $arch == x86_64* ]]; then if [[ $arch == x86_64* ]]; then
wget https://wit.wiimm.de/download/wit-v3.04a-r8427-x86_64.tar.gz -O wit.tar.gz curl https://wit.wiimm.de/download/wit-v3.04a-r8427-x86_64.tar.gz > wit.tar.gz
elif [[ $arch == i*86 ]]; then elif [[ $arch == i*86 ]]; then
wget https://wit.wiimm.de/download/wit-v3.04a-r8427-i386.tar.gz -O wit.tar.gz curl https://wit.wiimm.de/download/wit-v3.04a-r8427-i386.tar.gz > wit.tar.gz
else else
echo "ERROR: Your system's architecture ($arch) does not support Wiimm's ISO Tools. Please refer to wit's website for more information on how to install the tools. https://wit.wiimm.de/" echo "ERROR: Your system's architecture ($arch) does not support Wiimm's ISO Tools. Please refer to wit's website for more information on how to install the tools. https://wit.wiimm.de/"
fi fi
elif [[ "$OSTYPE" == "darwin"* ]]; then elif [[ "$OSTYPE" == "darwin"* ]]; then
wget https://wit.wiimm.de/download/wit-v3.04a-r8427-mac.tar.gz -O wit.tar.gz curl https://wit.wiimm.de/download/wit-v3.04a-r8427-mac.tar.gz > wit.tar.gz
elif [[ "$OSTYPE" == "cygwin" ]]; then elif [[ "$OSTYPE" == "cygwin" ]]; then
break break
else else