From b348031ef2d7dedc37764a55f10dcbaa21160518 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=BC=D0=B8=D1=82=D1=80=D0=B8=D0=B9=20=D0=9C=D0=B0?= =?UTF-8?q?=D0=BC=D0=B5=D0=B4=D0=BE=D0=B2?= Date: Wed, 10 Jun 2026 17:57:05 +0300 Subject: [PATCH] replace npm ci with npm install for cross-version compatibility --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index ebfe341..b3e30a5 100644 --- a/install.sh +++ b/install.sh @@ -283,8 +283,8 @@ echo "=== CHECKPOINT: after redis loop ===" # ─── 6. Dependencies & Prisma ──────────────────────────────────── echo "=== CHECKPOINT: step 6 ===" step "6/8 Installing dependencies" -echo "=== CHECKPOINT: npm ci ===" -npm ci --no-audit --no-fund || error "'npm ci' failed. Check network / ${INSTALL_DIR}/package-lock.json" +echo "=== CHECKPOINT: npm install ===" +npm install --no-audit --no-fund || error "'npm install' failed. Check network / ${INSTALL_DIR}/package.json" echo "=== CHECKPOINT: npm ci done ===" info "npm dependencies installed"