summaryrefslogtreecommitdiff
path: root/firefox.sh.in
diff options
context:
space:
mode:
authorMartin Stransky <stransky@anakreon.cz>2011-01-06 10:36:09 +0100
committerMartin Stransky <stransky@anakreon.cz>2011-01-06 10:36:09 +0100
commit1c699fa97d42b453c0246489491c12d5d0572924 (patch)
tree6c32b9d2b881df3127f3a911810769f40a5e1234 /firefox.sh.in
parentFixed rhbz#667477 - broken launch script (diff)
downloadlibrewolf-fedora-ff-1c699fa97d42b453c0246489491c12d5d0572924.tar.gz
librewolf-fedora-ff-1c699fa97d42b453c0246489491c12d5d0572924.tar.bz2
librewolf-fedora-ff-1c699fa97d42b453c0246489491c12d5d0572924.zip
application.ini permission check fix
Diffstat (limited to 'firefox.sh.in')
-rw-r--r--firefox.sh.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/firefox.sh.in b/firefox.sh.in
index cb6373b..6b339e7 100644
--- a/firefox.sh.in
+++ b/firefox.sh.in
@@ -50,8 +50,8 @@ esac
MOZ_FIREFOX_FILE="application.ini"
-if [ ! -x $MOZ_LIB_DIR/firefox-FIREFOX_VERSION/$MOZ_FIREFOX_FILE ]; then
- if [ ! -x $SECONDARY_LIB_DIR/firefox-FIREFOX_VERSION/$MOZ_FIREFOX_FILE ]; then
+if [ ! -r $MOZ_LIB_DIR/firefox-FIREFOX_VERSION/$MOZ_FIREFOX_FILE ]; then
+ if [ ! -r $SECONDARY_LIB_DIR/firefox-FIREFOX_VERSION/$MOZ_FIREFOX_FILE ]; then
echo "Error: $MOZ_LIB_DIR/firefox-FIREFOX_VERSION/$MOZ_FIREFOX_FILE not found"
if [ -d $SECONDARY_LIB_DIR ]; then
echo " $SECONDARY_LIB_DIR/firefox-FIREFOX_VERSION/$MOZ_FIREFOX_FILE not found"
bgstack15