From b564ad0a2e2a9362f57db2dbe639a765ca32b27d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Ribaudo?= Date: Thu, 29 Jul 2021 23:11:17 +0200 Subject: [PATCH] Install verdaccio with yarn again --- scripts/integration-tests/utils/local-registry.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/integration-tests/utils/local-registry.sh b/scripts/integration-tests/utils/local-registry.sh index 58b0128d704a..26fe85f1755a 100755 --- a/scripts/integration-tests/utils/local-registry.sh +++ b/scripts/integration-tests/utils/local-registry.sh @@ -10,7 +10,7 @@ function startLocalRegistry { tmp_registry_log=`mktemp` echo "Registry output file: $tmp_registry_log" (cd && nohup npx ${VERDACCIO_PACKAGE:-$default_verdaccio_package} -c $1 &>$tmp_registry_log &) - npm install --global verdaccio-memory@~9.7.2 + yarn global add verdaccio-memory@~9.7.2 # Wait for Verdaccio to boot grep -q "http address" <(tail -f $tmp_registry_log)