blob: 8052e000da6261698246a425bb9241f969769ca0 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 | #!/bin/sh
tmp=$(mktemp)
cat << EOF > "$tmp"
    darkreader:navbar
    keepassxc-browser:menupanel
    simple-tab-groups:menupanel
    ublock-origin:menupanel
    tridactyl-vim:menupanel
    video-pauser:menupanel
    libredirect:menupanel
    torproject-snowflake:menupanel
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
rm "$tmp";
 |