Skip to content

Commit

Permalink
Fix old-image push bug in build script.
Browse files Browse the repository at this point in the history
The push which was meant only for Scorpio is also affecting non scorpio images and repush old ibn images.
This leads sometimes to usage of old images in e2e test.
  • Loading branch information
wagmarcel committed Jul 8, 2023
1 parent 5a75410 commit f4be10f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/build-local-platform.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ else
( cd ../.. && git clone https://github.com/IndustryFusion/ScorpioBroker.git )
( cd ../../ScorpioBroker && mvn clean package -DskipTests -Pdocker )
fi
docker images | tail -n +2 | awk '{print $1":"$2}'| grep ibn40 |
docker images | tail -n +2 | awk '{print $1":"$2}'| grep ibn40 | grep scorpio | grep ${VERSION} |
{
while read -r i; do
j=${i//ibn40/k3d-iff.localhost:12345};
Expand Down

0 comments on commit f4be10f

Please sign in to comment.