Skip to content

Commit 1f61b7a

Browse files
committed
Fixed filter and fixed tag name
1 parent 00dc411 commit 1f61b7a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ for d in */ ; do
1414
if [ ! -f Dockerfile ]; then
1515
continue
1616
fi
17-
if [ ! -z "$_filter" -a "x$d" != "x$_filter" ]; then
17+
if [[ ! -z "$_filter" && $d =~ $_filter ]]; then
1818
echo "Skipped $d (_filter == $_filter)" >&2
1919
continue
2020
fi
@@ -26,7 +26,7 @@ for d in */ ; do
2626
IS_PHP=1
2727
fi
2828
VERSION="$( head -n 1 "VERSION" )"
29-
TAG="dbtech-devel:${d%?}"
29+
TAG="belazor/dbtech-devel:${d%?}"
3030
TAG_WITH_VERSION="$TAG-$VERSION"
3131

3232
docker build \

0 commit comments

Comments
 (0)