Skip to content

Commit c5b322e

Browse files
bors[bot]matklad
andauthored
Merge #2462
2462: Switch back to npm install r=matklad a=matklad Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
2 parents c6eff1d + 1836671 commit c5b322e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

xtask/src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,8 @@ fn install_client(ClientOpt::VsCode: ClientOpt) -> Result<()> {
182182
eprintln!("\nERROR: `npm --version` failed, `npm` is required to build the VS Code plugin")
183183
}
184184

185-
Cmd { unix: r"npm ci", windows: r"cmd.exe /c npm ci", work_dir: "./editors/code" }.run()?;
185+
Cmd { unix: r"npm install", windows: r"cmd.exe /c npm install", work_dir: "./editors/code" }
186+
.run()?;
186187
Cmd {
187188
unix: r"npm run package --scripts-prepend-node-path",
188189
windows: r"cmd.exe /c npm run package",

0 commit comments

Comments
 (0)