From 89b5fa3b8f01ddcbaf7199253593bfc5483608ea Mon Sep 17 00:00:00 2001 From: Yousaf Nabi Date: Tue, 5 Mar 2024 11:55:25 +0000 Subject: [PATCH] fix(tests): update docker-compose sed to use correct tag --- script/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/test.sh b/script/test.sh index ab8db3f..b5a9d90 100755 --- a/script/test.sh +++ b/script/test.sh @@ -5,7 +5,7 @@ set -e docker_compose_files=$(find . -name "docker-compose-test*.yml") for file in $docker_compose_files; do - cat $file | sed -e "s~image: pactfoundation/pact-broker:.*~image: pactfoundation/pact-broker:${TAG}~g" > dc-tmp + cat $file | sed -e "s/pactfoundation\/pact-broker:latest.*/pactfoundation\/pact-broker:${TAG}\"/g" > dc-tmp mv dc-tmp $file done