Skip to content

Commit 89b5fa3

Browse files
committed
fix(tests): update docker-compose sed to use correct tag
1 parent c752abb commit 89b5fa3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e
55
docker_compose_files=$(find . -name "docker-compose-test*.yml")
66

77
for file in $docker_compose_files; do
8-
cat $file | sed -e "s~image: pactfoundation/pact-broker:.*~image: pactfoundation/pact-broker:${TAG}~g" > dc-tmp
8+
cat $file | sed -e "s/pactfoundation\/pact-broker:latest.*/pactfoundation\/pact-broker:${TAG}\"/g" > dc-tmp
99
mv dc-tmp $file
1010
done
1111

0 commit comments

Comments
 (0)