1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-09-11 14:55:59 +00:00

Fix npm ci always being run

This commit is contained in:
Jonathan Coates
2021-12-14 19:53:46 +00:00
parent dbc8c18b34
commit a9fc3edb5e

2
go4it
View File

@@ -99,7 +99,7 @@ def setup() -> None:
log("Installing npm packages")
for branch in BRANCHES:
if not os.path.isdir(os.path.join(branch.name, "node_module")):
if not os.path.isdir(os.path.join(branch.name, "node_modules")):
run_in(branch, "npm", "ci")