From 602cb10c10a8b682c427a857ec5d83fc0ec083d4 Mon Sep 17 00:00:00 2001 From: the-sane <3657071+the-sane@users.noreply.github.com> Date: Wed, 1 Oct 2025 23:29:24 -0400 Subject: [PATCH] Fix unquoted path --- lib/sc-launch.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/sc-launch.sh b/lib/sc-launch.sh index 54f5fcc..deb7b91 100755 --- a/lib/sc-launch.sh +++ b/lib/sc-launch.sh @@ -60,10 +60,10 @@ case "$1" in cd "$WINEPREFIX"; pwd; /usr/bin/env bash --norc; exit 0 ;; "config") - /usr/bin/env bash --norc -c "${wine_path}/winecfg"; exit 0 + /usr/bin/env bash --norc -c "\"${wine_path}\"/winecfg"; exit 0 ;; "controllers") - /usr/bin/env bash --norc -c "${wine_path}/wine control joy.cpl"; exit 0 + /usr/bin/env bash --norc -c "\"${wine_path}\"/wine control joy.cpl"; exit 0 ;; esac