Fix helper

This commit is contained in:
2025-02-04 21:08:43 +00:00
parent 1d42d1efa6
commit 63a0fa1b22

View File

@@ -3,9 +3,9 @@
set -x -o pipefail
tag=$1
build=${$2:-0}
build=$2
docker build -t ${tag}:latest .
if [[ $build -gt 0 ]]; then
if [[ $build == "" ]]; then
docker build -t ${tag}:${build} .
fi