diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2022-06-04 17:06:01 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2022-06-04 17:06:01 -0600 |
commit | 93b54e8412e727bb8f524871fbc482ae56ffd0a2 (patch) | |
tree | dee77fdfcdb61545fc4e592fea8e2fbf6f61ab1e | |
parent | ce1aca85b17e23c3be5aa563aac3d3a7fd5d0eb4 (diff) | |
download | riibalanced-patcher-93b54e8412e727bb8f524871fbc482ae56ffd0a2.tar riibalanced-patcher-93b54e8412e727bb8f524871fbc482ae56ffd0a2.tar.gz riibalanced-patcher-93b54e8412e727bb8f524871fbc482ae56ffd0a2.tar.bz2 |
remove gnulinux constraint
-rwxr-xr-x | patch_iso.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/patch_iso.sh b/patch_iso.sh index 7aff938..dfda8fa 100755 --- a/patch_iso.sh +++ b/patch_iso.sh @@ -60,7 +60,7 @@ if [[ ERROR -ne 0 ]]; then printf "Would you like to install wit? [y/n] " done arch=$(uname -m) - if [[ "$OSTYPE" == "linux-gnu"* ]]; then + if [[ "$OSTYPE" == "linux"* ]]; then if [[ $arch == x86_64* ]]; then curl https://wit.wiimm.de/download/wit-v3.04a-r8427-x86_64.tar.gz > wit.tar.gz elif [[ $arch == i*86 ]]; then |