From 08c7e8e8ddd8000131a583d4bf88d4f29d20b14d Mon Sep 17 00:00:00 2001 From: Shmuel H Date: Fri, 1 Nov 2019 07:29:56 +0200 Subject: [PATCH] appimage: Escape $DIR to avoid word-splitting --- cmake/linux/launch_lmms.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/linux/launch_lmms.sh b/cmake/linux/launch_lmms.sh index 02cebd5a4..e6432aa3a 100644 --- a/cmake/linux/launch_lmms.sh +++ b/cmake/linux/launch_lmms.sh @@ -22,4 +22,4 @@ else echo "Jack does not appear to be installed. That's OK, we'll use a dummy version instead." export LD_LIBRARY_PATH=$DIR/usr/lib/lmms/optional:$LD_LIBRARY_PATH fi -QT_X11_NO_NATIVE_MENUBAR=1 $DIR/usr/bin/lmms.real "$@" \ No newline at end of file +QT_X11_NO_NATIVE_MENUBAR=1 "$DIR"/usr/bin/lmms.real "$@" \ No newline at end of file