aboutsummaryrefslogtreecommitdiffstats
path: root/hm/soispha/conf/firefox/scripts/update_extensions
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xhm/soispha/conf/firefox/scripts/update_extensions.sh9
1 files changed, 3 insertions, 6 deletions
diff --git a/hm/soispha/conf/firefox/scripts/update_extensions.sh b/hm/soispha/conf/firefox/scripts/update_extensions.sh
index f8ed3a9a..83b0146d 100755
--- a/hm/soispha/conf/firefox/scripts/update_extensions.sh
+++ b/hm/soispha/conf/firefox/scripts/update_extensions.sh
@@ -1,8 +1,7 @@
#!/bin/sh
-
tmp=$(mktemp)
-cat << EOF > "$tmp"
+cat <<EOF >"$tmp"
darkreader:navbar
keepassxc-browser:navbar
vhack-libredirect:navbar
@@ -15,8 +14,6 @@ EOF
# The bin is provided in the devshell;
# The cat execution should be unquoted;
# shellcheck disable=SC2046
-generate_extensions $(cat "$tmp") > "$(dirname "$0")"/../config/extensions/extensions.json
-
-
+generate_extensions $(cat "$tmp") >"$(dirname "$0")"/../config/extensions/extensions.json
-rm "$tmp";
+rm "$tmp"