diff options
Diffstat (limited to 'www-client/firefox/files/firefox.sh')
-rw-r--r-- | www-client/firefox/files/firefox.sh | 4 |
1 files changed, 2 insertions, 2 deletions
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} "$@" |