diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2022-06-05 02:15:54 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2022-06-05 02:15:54 -0600 |
commit | b4a78e144c3c90307a79acb13819f60d094db327 (patch) | |
tree | 3d5862bc85f4ed6aab86fcae4ea11224bd05b1ed | |
parent | 758ff779a01df9e1560210b08c0dccb3fff312a3 (diff) | |
download | riibalanced-patcher-b4a78e144c3c90307a79acb13819f60d094db327.tar riibalanced-patcher-b4a78e144c3c90307a79acb13819f60d094db327.tar.gz riibalanced-patcher-b4a78e144c3c90307a79acb13819f60d094db327.tar.bz2 |
forgot to add check if wit is installed
-rwxr-xr-x | patch_iso.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/patch_iso.sh b/patch_iso.sh index 0b5d82c..fbfd9fd 100755 --- a/patch_iso.sh +++ b/patch_iso.sh @@ -117,6 +117,12 @@ if [[ ERROR -ne 0 ]]; then fi fi +# check for cygwin -------------------------------------------------------------- + +if [[ "$OSTYPE" == "cygwin" ]]; then + export CYGWIN='yes' +fi + # check for image --------------------------------------------------------------- if [[ ! $1 ]]; then |