diff options
author | Ryhon <ryhon0@gmail.com> | 2022-03-04 19:20:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-04 19:20:39 +0100 |
commit | 30d63f0a1170ca9b3690f010fcf72e7c1e73f9d1 (patch) | |
tree | f406f6c0cc7459e65af0c4a447d3aa043cf64e69 /src/SMAPI.Installer | |
parent | 8429485e696cd4eb9f1f1a6ab50fe2629a1836a0 (diff) | |
download | SMAPI-30d63f0a1170ca9b3690f010fcf72e7c1e73f9d1.tar.gz SMAPI-30d63f0a1170ca9b3690f010fcf72e7c1e73f9d1.tar.bz2 SMAPI-30d63f0a1170ca9b3690f010fcf72e7c1e73f9d1.zip |
Make SKIP_TERMINAL default to false if not set
Diffstat (limited to 'src/SMAPI.Installer')
-rw-r--r-- | src/SMAPI.Installer/assets/unix-launcher.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI.Installer/assets/unix-launcher.sh b/src/SMAPI.Installer/assets/unix-launcher.sh index 47937f95..6ab61df6 100644 --- a/src/SMAPI.Installer/assets/unix-launcher.sh +++ b/src/SMAPI.Installer/assets/unix-launcher.sh @@ -8,7 +8,7 @@ cd "$(dirname "$0")" || exit $? # change to true to skip opening a terminal # This isn't recommended since you won't see errors, warnings, and update alerts. -SKIP_TERMINAL=false +SKIP_TERMINAL=${SKIP_TERMINAL:=false} ########## |