diff options
author | Hygna <hygna@proton.me> | 2022-10-10 17:16:23 +0100 |
---|---|---|
committer | Hygna <hygna@proton.me> | 2022-10-10 17:16:35 +0100 |
commit | f7984aca58a7770e65f5d5d6c4920e83e4c25347 (patch) | |
tree | d198760e8e2f081ecf56be41bbeb7152d6961547 | |
parent | Fix regex since Fandom subdomains can contain hyphens (#37) (diff) | |
download | libredirect-f7984aca58a7770e65f5d5d6c4920e83e4c25347.zip |
Fixed bug when running scripts on windows shells
Those damn non posix complient shells
-rw-r--r-- | package.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package.json b/package.json index 74bb60b3..e0578173 100644 --- a/package.json +++ b/package.json @@ -9,8 +9,8 @@ "start": "web-ext run --browser-console --source-dir ./src/", "build": "web-ext build --overwrite-dest --source-dir ./src/", "test": "web-ext lint --source-dir ./src/ || true", - "instances": "python3 src/instances/get_instances.py; git update-index --assume-unchanged src/instances/blacklist.json src/instances/data.json", - "ejs": "npx ejs src/pages/options/index.ejs -f src/config/config.json -o src/pages/options/index.html; npx ejs src/pages/popup/popup.ejs -f src/config/config.json -o src/pages/popup/popup.html" + "instances": "python3 src/instances/get_instances.py && git update-index --assume-unchanged src/instances/blacklist.json src/instances/data.json", + "ejs": "npx ejs src/pages/options/index.ejs -f src/config/config.json -o src/pages/options/index.html && npx ejs src/pages/popup/popup.ejs -f src/config/config.json -o src/pages/popup/popup.html" }, "repository": { "type": "git", |