From ad2b6cad48dc336011c9fb24ba87b318b796b916 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Wed, 20 Nov 2019 23:27:03 +0300 Subject: Remove npm.cmd I *think* this is more correct --- xtask/src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'xtask') diff --git a/xtask/src/main.rs b/xtask/src/main.rs index 4b1f0c887..c97bfec97 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -173,7 +173,7 @@ fn fix_path_for_mac() -> Result<()> { fn install_client(ClientOpt::VsCode: ClientOpt) -> Result<()> { let npm_version = Cmd { unix: r"npm --version", - windows: r"cmd.exe /c npm.cmd --version", + windows: r"cmd.exe /c npm --version", work_dir: "./editors/code", } .run(); @@ -182,10 +182,10 @@ fn install_client(ClientOpt::VsCode: ClientOpt) -> Result<()> { eprintln!("\nERROR: `npm --version` failed, `npm` is required to build the VS Code plugin") } - Cmd { unix: r"npm ci", windows: r"cmd.exe /c npm.cmd ci", work_dir: "./editors/code" }.run()?; + Cmd { unix: r"npm ci", windows: r"cmd.exe /c npm ci", work_dir: "./editors/code" }.run()?; Cmd { unix: r"npm run package --scripts-prepend-node-path", - windows: r"cmd.exe /c npm.cmd run package", + windows: r"cmd.exe /c npm run package", work_dir: "./editors/code", } .run()?; -- cgit v1.2.3