summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Deutschmann <whissi@gentoo.org>2020-03-31 18:14:12 +0200
committerThomas Deutschmann <whissi@gentoo.org>2020-03-31 18:27:00 +0200
commitf15eb0616cbc5992c7486772eea825d32d4c44f9 (patch)
treefc914e49e81027867c792aa83aec808b1869ed9d /www-client
parentwww-client/firefox: fix quoting (diff)
downloadgentoo-f15eb0616cbc5992c7486772eea825d32d4c44f9.tar.gz
gentoo-f15eb0616cbc5992c7486772eea825d32d4c44f9.tar.bz2
gentoo-f15eb0616cbc5992c7486772eea825d32d4c44f9.zip
www-client/firefox-bin: fix quoting
Package-Manager: Portage-2.3.96, Repoman-2.3.22 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'www-client')
-rw-r--r--www-client/firefox-bin/files/firefox-bin.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/www-client/firefox-bin/files/firefox-bin.sh b/www-client/firefox-bin/files/firefox-bin.sh
index 069b474ac8a3..b02318548005 100644
--- a/www-client/firefox-bin/files/firefox-bin.sh
+++ b/www-client/firefox-bin/files/firefox-bin.sh
@@ -98,8 +98,8 @@ export GTK_PATH="${MOZ_LIB_DIR}/gtk-3.0"
## 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} "$@"