summaryrefslogtreecommitdiff
path: root/src/SMAPI.Installer
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-06-23 20:04:42 -0400
committerGitHub <noreply@github.com>2020-06-23 20:04:42 -0400
commit35f15dfef3ac1827849642aad0b45fd558126c3d (patch)
tree5c583770b54649457a966bf7a14475dfedd192d5 /src/SMAPI.Installer
parentba0dff819f2e65b16a0c7bc7a9233fdb101994d0 (diff)
parentd561768246aac614946dd096226a38b4d9ede18b (diff)
downloadSMAPI-35f15dfef3ac1827849642aad0b45fd558126c3d.tar.gz
SMAPI-35f15dfef3ac1827849642aad0b45fd558126c3d.tar.bz2
SMAPI-35f15dfef3ac1827849642aad0b45fd558126c3d.zip
Merge pull request #725 from jlaw/fix-misc-launcher
Update unix-launcher.sh
Diffstat (limited to 'src/SMAPI.Installer')
-rw-r--r--src/SMAPI.Installer/assets/unix-launcher.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SMAPI.Installer/assets/unix-launcher.sh b/src/SMAPI.Installer/assets/unix-launcher.sh
index b72eed22..b2f52c19 100644
--- a/src/SMAPI.Installer/assets/unix-launcher.sh
+++ b/src/SMAPI.Installer/assets/unix-launcher.sh
@@ -79,7 +79,7 @@ else
# if no terminal was found, run in current shell or with no output
if [ -z "$LAUNCHTERM" ]; then
- sh -c 'TERM=xterm $LAUNCHER'
+ sh -c "TERM=xterm $LAUNCHER"
if [ $? -eq 127 ]; then
$LAUNCHER --no-terminal
fi
@@ -116,7 +116,7 @@ else
;;
*)
# If we don't know the terminal, just try to run it in the current shell.
- sh -c 'TERM=xterm $LAUNCHER'
+ sh -c "TERM=xterm $LAUNCHER"
# if THAT fails, launch with no output
if [ $? -eq 127 ]; then
$LAUNCHER --no-terminal