diff options
author | BeatLink <beatlink@protonmail.com> | 2019-08-16 22:00:32 -0500 |
---|---|---|
committer | BeatLink <beatlink@protonmail.com> | 2019-08-16 22:00:32 -0500 |
commit | 088d2f7727fd1c88b75bec370d9131e0bbd1e432 (patch) | |
tree | 32bf0a9bcccfd7b47478fdd3b48e235021f83700 /linux/binary_tarball/toggle-settings.sh | |
parent | Move other platforms to own repo (diff) | |
download | librewolf-linux-088d2f7727fd1c88b75bec370d9131e0bbd1e432.tar.gz librewolf-linux-088d2f7727fd1c88b75bec370d9131e0bbd1e432.tar.bz2 librewolf-linux-088d2f7727fd1c88b75bec370d9131e0bbd1e432.zip |
move linux files to top level
Diffstat (limited to 'linux/binary_tarball/toggle-settings.sh')
-rw-r--r-- | linux/binary_tarball/toggle-settings.sh | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/linux/binary_tarball/toggle-settings.sh b/linux/binary_tarball/toggle-settings.sh deleted file mode 100644 index ff46bde..0000000 --- a/linux/binary_tarball/toggle-settings.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/env bash - -# Exit script with a non-zero exit code if: -# - any command fails (-e | --errexit) -# - any variable is unset (-u | --nounset) -# - a part of a piped sequence fails (-o pipefail) -set -euo pipefail - -SCRIPT_FOLDER=$(realpath $(dirname $0)); - -# Enable settings ------------------------------------------------------------------------------------------ -if [[ "${1}" = "--enable" ]]; then - mv "${SCRIPT_FOLDER}/[DISABLED] local-settings.js" "${SCRIPT_FOLDER}/local-settings.js"; - mv "${SCRIPT_FOLDER}/[DISABLED] policies.json" "${SCRIPT_FOLDER}/policies.json"; - mv "${SCRIPT_FOLDER}/[DISABLED] librewolf.cfg" "${SCRIPT_FOLDER}/librewolf.cfg"; -# Disable settings ------------------------------------------------------------------------------------------ -elif [[ "${1}" = "--disable" ]]; then - mv "${SCRIPT_FOLDER}/local-settings.js" "${SCRIPT_FOLDER}/[DISABLED] local-settings.js"; - mv "${SCRIPT_FOLDER}/policies.json" "${SCRIPT_FOLDER}/[DISABLED] policies.json"; - mv "${SCRIPT_FOLDER}/librewolf.cfg" "${SCRIPT_FOLDER}/[DISABLED] librewolf.cfg"; -fi |