From 4ae238de516eee2df41d41773697e8ac47366b16 Mon Sep 17 00:00:00 2001 From: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Date: Tue, 24 Oct 2023 17:35:48 +0200 Subject: [PATCH] build: add missing yarn.lock for cypress update if necessary --- scripts/update-cypress-latest-other.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/update-cypress-latest-other.sh b/scripts/update-cypress-latest-other.sh index 37fb60d45..6acbefde4 100755 --- a/scripts/update-cypress-latest-other.sh +++ b/scripts/update-cypress-latest-other.sh @@ -45,6 +45,7 @@ echo echo updating examples/yarn-modern to cypress@latest cd yarn-modern yarn set version latest +touch yarn.lock # create if missing to avoid a Yarn error yarn add cypress --dev --exact cd .. @@ -53,6 +54,7 @@ echo echo updating examples/yarn-modern-pnp to cypress@latest cd yarn-modern-pnp yarn set version latest +touch yarn.lock # create if missing to avoid a Yarn error yarn add cypress --dev --exact cd ..