From c38432c0bd7e875b51e6ea04b156babe87911be7 Mon Sep 17 00:00:00 2001 From: DJMcNab <36049421+DJMcNab@users.noreply.github.com> Date: Sat, 12 Jan 2019 15:00:03 +0000 Subject: Use --force when installing the VSIX. --- crates/tools/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/tools/src/main.rs b/crates/tools/src/main.rs index 9d73d57c4..5597aae5a 100644 --- a/crates/tools/src/main.rs +++ b/crates/tools/src/main.rs @@ -158,12 +158,12 @@ fn install_code_extension() -> Result<()> { } if cfg!(windows) { run( - r"cmd.exe /c code.cmd --install-extension ./ra-lsp-0.0.1.vsix", + r"cmd.exe /c code.cmd --install-extension ./ra-lsp-0.0.1.vsix --force", "./editors/code", )?; } else { run( - r"code --install-extension ./ra-lsp-0.0.1.vsix", + r"code --install-extension ./ra-lsp-0.0.1.vsix --force", "./editors/code", )?; } -- cgit v1.2.3