From 2dd78877e6d5a8fb7761ae19427cb50b1593b7ef Mon Sep 17 00:00:00 2001 From: mshriver Date: Tue, 11 Jun 2024 09:52:50 -0400 Subject: [PATCH] Prevent ibutsu-pod frontend from updating lock --- scripts/ibutsu-pod.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ibutsu-pod.sh b/scripts/ibutsu-pod.sh index 123dfed9..9b747de2 100755 --- a/scripts/ibutsu-pod.sh +++ b/scripts/ibutsu-pod.sh @@ -190,7 +190,7 @@ podman run -d \ -w /mnt \ -v./frontend:/mnt/:Z \ node:18 \ - /bin/bash -c 'npm install yarn && yarn install && CI=1 yarn devserver' > /dev/null + /bin/bash -c 'npm install --no-save --no-package-lock yarn && yarn install && CI=1 yarn devserver' > /dev/null echo "done." echo -n "Waiting for frontend to respond..." until $(curl --output /dev/null --silent --head --fail http://127.0.0.1:3000); do