fix(bun): only install -p dependencies

This commit is contained in:
Ruben Fiszel
2023-08-13 14:41:59 +02:00
parent 3bc1050258
commit 23164c8349
+1 -1
View File
@@ -124,7 +124,7 @@ pub async fn install_lockfile(
.current_dir(job_dir)
.env_clear()
.envs(common_bun_proc_envs)
.args(vec!["install"])
.args(vec!["install", "-p"])
.stdout(Stdio::piped())
.stderr(Stdio::piped())
.spawn()?;