From ee4072b490114cf519bade9f281cef9b09f1eebd Mon Sep 17 00:00:00 2001 From: Matt Fellows <53900+mefellows@users.noreply.github.com> Date: Tue, 3 Oct 2023 12:22:34 +1100 Subject: [PATCH] chore: remove -s flag from plugin install until https://github.com/pact-foundation/pact-plugins/issues/16 fixed --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index ee84656af..e2ed2879b 100755 --- a/Makefile +++ b/Makefile @@ -43,10 +43,10 @@ deps: download_plugins download_plugins: @echo "--- 🐿 Installing plugins"; \ ./scripts/install-cli.sh - ~/.pact/bin/pact-plugin-cli -y install -s https://github.com/pactflow/pact-protobuf-plugin/releases/tag/v-0.3.4 - ~/.pact/bin/pact-plugin-cli -y install -s https://github.com/pact-foundation/pact-plugins/releases/tag/csv-plugin-0.0.1 - ~/.pact/bin/pact-plugin-cli -y install -s https://github.com/mefellows/pact-matt-plugin/releases/tag/v0.0.9 - ~/.pact/bin/pact-plugin-cli -y install -s https://github.com/austek/pact-avro-plugin/releases/tag/v0.0.4 + ~/.pact/bin/pact-plugin-cli -y install https://github.com/pactflow/pact-protobuf-plugin/releases/tag/v-0.3.4 + ~/.pact/bin/pact-plugin-cli -y install https://github.com/pact-foundation/pact-plugins/releases/tag/csv-plugin-0.0.1 + ~/.pact/bin/pact-plugin-cli -y install https://github.com/mefellows/pact-matt-plugin/releases/tag/v0.0.9 + ~/.pact/bin/pact-plugin-cli -y install https://github.com/austek/pact-avro-plugin/releases/tag/v0.0.4 cli: @if [ ! -d pact/bin ]; then\