From 5f2e052a43bef7b085900079601b028aea527179 Mon Sep 17 00:00:00 2001 From: MrTumnis <138890915+MrTumnis@users.noreply.github.com> Date: Wed, 12 Jun 2024 18:22:09 -0600 Subject: [PATCH] Update installer.sh Not adding a new line was causing a "directory does not exist" error because the line was continuos with the '#' --- installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer.sh b/installer.sh index ac09d99..a2f109d 100755 --- a/installer.sh +++ b/installer.sh @@ -110,7 +110,7 @@ Categories=$CATEGORIES MimeType=$MIME_TYPES " | $SUDO tee "$APP_PATH/$1.desktop" >/dev/null $SUDO rm -f "$BIN_PATH/$1" - echo "#!/usr/bin/env bash $BIN_PATH/winapps $1 $* + echo -e "#!/usr/bin/env bash \n $BIN_PATH/winapps $1 $* " | $SUDO tee "$BIN_PATH/$1" >/dev/null $SUDO chmod a+x "$BIN_PATH/$1" fi