Work with versions of bash older than version 2. Not part of the default build. Bug #104768.

git-svn-id: svn://10.0.0.236/trunk@105587 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
blizzard%redhat.com 2001-10-17 02:57:00 +00:00
parent aab94a1cb2
commit 164f60d537

View File

@ -156,7 +156,7 @@ ALREADY_RUNNING=`check_running`
# If there is no command line argument at all then try to open a new
# window in an already running instance.
if [ "${ALREADY_RUNNING}" == "1" ] && [ -z "$1" ]; then
if [ "${ALREADY_RUNNING}" -eq "1" ] && [ -z "$1" ]; then
exec $MOZ_PROGRAM -remote "xfeDoCommand(openBrowser)" 2>/dev/null >/dev/null
fi