Skip to content

Commit 78a4737

Browse files
committed
Docker: be POSIX-compliant in the library creation script.
1 parent f311b1f commit 78a4737

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/docker/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,10 @@ library:
142142
modname="$$( echo $$mod | tr -d '.0123456789-' )"; \
143143
TAGS="$$mod $${mod%%.*} $$modname" ; \
144144
TAGS="$$(echo $$TAGS | tr " " "\n" | sort -u -r | tr "\n" "," | sed "s/,/, /g")"; \
145-
if [ "$$previous" == "$$modname" ]; then \
145+
if [ "$$previous" = "$$modname" ]; then \
146146
echo "Tags: $(VERSION)-$$mod, $$mod"; \
147147
else \
148-
if [ "$$mod" == "minimal" ]; then \
148+
if [ "$$mod" = "minimal" ]; then \
149149
echo "Tags: $(VERSION)-$$mod, $${TAGS%, }, latest"; \
150150
else \
151151
echo "Tags: $(VERSION)-$$mod, $${TAGS%, }"; \

0 commit comments

Comments
 (0)