clarify a comment in builddocker.bash

This commit is contained in:
Klaas van Schelven
2024-10-02 22:51:45 +02:00
parent 7e142f406d
commit 00214dfc26

View File

@@ -10,7 +10,7 @@ echo "Building docker image with wheel file: $WHEEL_FILE"
# otherwise no tags are added
if [[ $WHEEL_FILE == *"dev"* ]]; then
echo "This is a dev version, no tags will be added"
echo "This is a dev version, no (numbered) tags will be added, just a :dev tag"
TAGS="-t bugsink/bugsink:dev"
else
VERSION=$(echo $WHEEL_FILE | cut -d'-' -f2)