From face9218ae2af1521d9e6eb7377d3e600eaa31db Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Thu, 23 Oct 2025 19:59:05 +0200 Subject: [PATCH] update pnpm install command in prepare-ci-build.sh to use --no-frozen-lockfile option --- scripts/prepare-ci-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/prepare-ci-build.sh b/scripts/prepare-ci-build.sh index 89ecd8d..76a865b 100755 --- a/scripts/prepare-ci-build.sh +++ b/scripts/prepare-ci-build.sh @@ -200,7 +200,7 @@ echo "" # Step 4: Install all dependencies echo -e "${YELLOW}[4/4] Installing all dependencies...${NC}" -pnpm install --recursive +pnpm install --no-frozen-lockfile echo -e "${GREEN}✓ All dependencies installed${NC}" echo ""