From: Thomas Deutschmann Date: Tue, 31 Mar 2020 16:13:04 +0000 (+0200) Subject: www-client/firefox: fix quoting X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4108503ab5d6c56c546ba9aa6fb538972d6a9096;p=gentoo.git www-client/firefox: fix quoting Package-Manager: Portage-2.3.96, Repoman-2.3.22 Signed-off-by: Thomas Deutschmann --- diff --git a/www-client/firefox/files/firefox.sh b/www-client/firefox/files/firefox.sh index e3412b3b47c3..dcb2a8d606d0 100644 --- a/www-client/firefox/files/firefox.sh +++ b/www-client/firefox/files/firefox.sh @@ -103,8 +103,8 @@ export MOZ_ALLOW_DOWNGRADE=1 ## names and contect menus ## if [[ $@ != *"--name "* ]]; then - set -- "--name ${DESKTOP_FILE}" "$@" + set -- --name "${DESKTOP_FILE}" "$@" fi # Run the browser -exec ${MOZ_PROGRAM} $@ +exec ${MOZ_PROGRAM} "$@"