From bee577120cc5ef1d31b7b5d469f477e384a14414 Mon Sep 17 00:00:00 2001 From: Yousaf Nabi Date: Wed, 17 Jul 2024 19:10:09 +0100 Subject: [PATCH] test: update pact-plugin-cli to 0.2.2 with shutdown fix for windows --- script/install-plugin-cli.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/install-plugin-cli.sh b/script/install-plugin-cli.sh index 4abdd5be..4fa39d6e 100755 --- a/script/install-plugin-cli.sh +++ b/script/install-plugin-cli.sh @@ -39,13 +39,13 @@ detect_osarch() { } -VERSION="0.1.2" +VERSION="0.2.2" detect_osarch if [ ! -f ~/.pact/bin/pact-plugin-cli ]; then echo "--- 🐿 Installing plugins CLI version '${VERSION}' (from tag ${TAG})" mkdir -p ~/.pact/bin - DOWNLOAD_LOCATION=https://github.com/pact-foundation/pact-plugins/releases/download/pact-plugin-cli-v${VERSION}/pact-plugin-cli-${os}-${arch}${ext}.gz + DOWNLOAD_LOCATION=https://github.com/you54f/pact-plugins/releases/download/pact-plugin-cli-v${VERSION}/pact-plugin-cli-${os}-${arch}${ext}.gz echo " Downloading from: ${DOWNLOAD_LOCATION}" curl -L -o ~/.pact/bin/pact-plugin-cli-${os}-${arch}.gz "${DOWNLOAD_LOCATION}" echo " Downloaded $(file ~/.pact/bin/pact-plugin-cli-${os}-${arch}.gz)"