Skip to content

Commit decf8cb

Browse files
committed
npx with -y
1 parent c06fb72 commit decf8cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

npm_mjs/management/commands/npm_install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def install_npm(force, stdout, post_npm_signal=True):
5454
call_command("create_package_json")
5555

5656
stdout.write("Installing dependencies...")
57-
call(["npx", "pnpm", "install"], cwd=TRANSPILE_CACHE_PATH)
57+
call(["npx", "pnpm", "install", "-y"], cwd=TRANSPILE_CACHE_PATH)
5858

5959
# Update cache
6060
with open(cache_file, "w") as f:

0 commit comments

Comments
 (0)