diff options
author | Ishan Jalan <44338423+ishanjalan@users.noreply.github.com> | 2022-07-20 22:30:09 +0530 |
---|---|---|
committer | Ishan Jalan <44338423+ishanjalan@users.noreply.github.com> | 2022-07-20 22:30:09 +0530 |
commit | ea4307a282468c20c27c6b8c2722bd46f6d5c64d (patch) | |
tree | 8a7ae132c68ff3108c562bddec4bc75ba402b278 | |
parent | 3da5917eed5fc9db3017e2bf0d0f9bf92c295e6a (diff) | |
download | SMAPI-ea4307a282468c20c27c6b8c2722bd46f6d5c64d.tar.gz SMAPI-ea4307a282468c20c27c6b8c2722bd46f6d5c64d.tar.bz2 SMAPI-ea4307a282468c20c27c6b8c2722bd46f6d5c64d.zip |
Update unix-launcher.sh
This will open the default shell. Works for me after testing.
-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 ae9624e7..cff21bb0 100644 --- a/src/SMAPI.Installer/assets/unix-launcher.sh +++ b/src/SMAPI.Installer/assets/unix-launcher.sh @@ -58,7 +58,7 @@ if [ "$(uname)" == "Darwin" ]; then echo "\"$0\" $@ --use-current-shell" >> /tmp/open-smapi-terminal.sh chmod +x /tmp/open-smapi-terminal.sh cat /tmp/open-smapi-terminal.sh - open -W -a Terminal /tmp/open-smapi-terminal.sh + open -W /tmp/open-smapi-terminal.sh rm /tmp/open-smapi-terminal.sh exit 0 fi |