diff --git a/get-modified-image.sh b/get-modified-image.sh index 6d13e0446de87b34f4af3f55565052c801504a1a..3b2605c7814071729af7d2c483a600c70db9a48f 100755 --- a/get-modified-image.sh +++ b/get-modified-image.sh @@ -1,6 +1,6 @@ #!/bin/sh -# retrieve the name of the image that was modified in the latest commit +# retrieve the name and the version of the image that was modified in the latest commit # this script should become obsolete as soon as a proper way of getting the modified files is added to Gitlab CI RES="" @@ -17,7 +17,7 @@ then exit 1 fi -RES=$(cat $RES/docker-compose.yml | grep image: | head -n1 | cut -d ':' -f2-) +RES=$(cat $RES/docker-compose.yml | grep $RES | cut -d ':' -f2-) if [[ "$RES" == "" ]] then echo "No image modified"