Fix unquoted path

This commit is contained in:
the-sane
2025-10-01 23:29:24 -04:00
parent 33ff17e126
commit 602cb10c10

View File

@@ -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