Skip to content

Commit

Permalink
fix(tests): update docker-compose sed to use correct tag
Browse files Browse the repository at this point in the history
  • Loading branch information
YOU54F committed Mar 5, 2024
1 parent c752abb commit 89b5fa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 89b5fa3

Please sign in to comment.