1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-10-01 00:10:47 +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
No known key found for this signature in database
GPG Key ID: B9E431FF07C98D06

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")