From f6401953335dbcfe3f615d61d446e3b51ac2609e Mon Sep 17 00:00:00 2001 From: strmfos <155266597+strmfos@users.noreply.github.com> Date: Sun, 10 Aug 2025 21:56:52 +0200 Subject: [PATCH] fix: correct spelling errors in docker-build.sh comments --- scripts/docker-build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/docker-build.sh b/scripts/docker-build.sh index 5e796e1..65c3c0d 100755 --- a/scripts/docker-build.sh +++ b/scripts/docker-build.sh @@ -25,7 +25,7 @@ CACHE_DIR="${DOCKER_CACHE_DIR:-${PWD}/target/docker-cache}" ## ## The default tag is automata ## -## This can be set throught environment variable DOCKER_TAG +## This can be set through environment variable DOCKER_TAG TAG="${DOCKER_TAG:-automata}" ## Use cache from docker registry, if local cache is not found @@ -49,7 +49,7 @@ then else ## No docker buildx plugin found, fallback to default docker build command ## - ## Use DOCKER_BUILDKIT environment variable for backward compatiblity. + ## Use DOCKER_BUILDKIT environment variable for backward compatibility. DOCKER_BUILDKIT=1 docker build --tag "${TAG}" . fi