Fix helper

This commit is contained in:
2025-02-04 21:09:17 +00:00
parent 63a0fa1b22
commit 460c511de7

View File

@@ -6,6 +6,6 @@ tag=$1
build=$2
docker build -t ${tag}:latest .
if [[ $build == "" ]]; then
if [[ $build != "" ]]; then
docker build -t ${tag}:${build} .
fi