aboutsummaryrefslogtreecommitdiff
path: root/browser/linux/resources
diff options
context:
space:
mode:
authorBeatLink <beatlink@protonmail.com>2019-07-04 01:43:06 -0500
committerBeatLink <beatlink@protonmail.com>2019-07-04 01:43:06 -0500
commita726cdad7e6dbbd5bb2e11910b2cae468b28f25e (patch)
tree620b53ba7550ce5e130c88b97b5cded1084be704 /browser/linux/resources
parentMove build job to linux specific variant (diff)
downloadlibrewolf-linux-a726cdad7e6dbbd5bb2e11910b2cae468b28f25e.tar.gz
librewolf-linux-a726cdad7e6dbbd5bb2e11910b2cae468b28f25e.tar.bz2
librewolf-linux-a726cdad7e6dbbd5bb2e11910b2cae468b28f25e.zip
Comment out broken per profile install argument
Diffstat (limited to 'browser/linux/resources')
-rwxr-xr-xbrowser/linux/resources/launch_scripts/launch_librewolf.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/browser/linux/resources/launch_scripts/launch_librewolf.sh b/browser/linux/resources/launch_scripts/launch_librewolf.sh
index 569c03f..88058c6 100755
--- a/browser/linux/resources/launch_scripts/launch_librewolf.sh
+++ b/browser/linux/resources/launch_scripts/launch_librewolf.sh
@@ -1,9 +1,10 @@
#!/usr/bin/env bash
+# PROFILE SPECIFIC SETTINGS WILL NOT WORK, DO NOT UNCOMMENT
# Adds option to install settings if argument is passed
-if [ "$1" = "--install-settings" ]; then
- ./install_settings;
-fi
+# if [ "$1" = "--install-settings" ]; then
+# ./install_settings;
+# fi
# Sets env variables to disable dedicated profiles (which breaks in some cases)
export MOZ_LEGACY_PROFILES=1;
bgstack15