fix: adding prefix arg to npm subcommands

This commit is contained in:
ge 2024-01-26 07:12:12 +02:00
parent 204af431e0
commit 42e605a766

View File

@ -166,6 +166,7 @@ impl NodeRuntime for RealNodeRuntime {
if let Some(directory) = directory {
command.current_dir(directory);
command.args(["--prefix".into(), directory.to_path_buf()]);
}
command.output().await.map_err(|e| anyhow!("{e}"))