From 99b1e6f3691afb8196acf33cce56b1642223f280 Mon Sep 17 00:00:00 2001
From: librelois <c@elo.tf>
Date: Wed, 5 May 2021 13:53:39 +0200
Subject: [PATCH] [build] fix xtask build script: use npm ci instead of npm i

---
 rust-bins/xtask/src/main.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rust-bins/xtask/src/main.rs b/rust-bins/xtask/src/main.rs
index b5077613e..bb1bbf3e0 100644
--- a/rust-bins/xtask/src/main.rs
+++ b/rust-bins/xtask/src/main.rs
@@ -108,7 +108,7 @@ fn build(skip_npm: bool, production: bool) -> Result<()> {
         exec_should_success(
             Command::new("npm")
                 .env("NEON_BUILD_RELEASE", "true")
-                .arg("install"),
+                .arg("ci"),
         )?;
         if production {
             exec_should_success(Command::new("npm").args(&["prune", "--production"]))?;
-- 
GitLab