Avoid updating package-lock.json when building Zed

This commit is contained in:
Max Brunsfeld 2022-09-02 11:39:54 -07:00
parent 18ab883590
commit ba1124ee44

View file

@ -5,7 +5,7 @@ fn main() {
let output = Command::new("npm")
.current_dir("../../styles")
.args(["install"])
.args(["install", "--no-save"])
.output()
.expect("failed to run npm");
if !output.status.success() {