From 52f79f232e9db39e5f697b13cb0e9b9be47336c8 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Fri, 6 May 2011 08:31:19 +1200 Subject: [PATCH] correctly requote arguments to zenity --- packaging/linux/OpenRA.Utility.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packaging/linux/OpenRA.Utility.sh b/packaging/linux/OpenRA.Utility.sh index cc6a99818d..b5da9b178a 100755 --- a/packaging/linux/OpenRA.Utility.sh +++ b/packaging/linux/OpenRA.Utility.sh @@ -3,8 +3,8 @@ if [[ "$1" == "--display-filepicker" ]]; then if command -v zenity > /dev/null ; then - zenity --file-selection --title $2 + zenity --file-selection --title "$2" else mono OpenRA.Utility.exe "$@" fi -fi \ No newline at end of file +fi