We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f311b1f commit 78a4737Copy full SHA for 78a4737
pkg/docker/Makefile
@@ -142,10 +142,10 @@ library:
142
modname="$$( echo $$mod | tr -d '.0123456789-' )"; \
143
TAGS="$$mod $${mod%%.*} $$modname" ; \
144
TAGS="$$(echo $$TAGS | tr " " "\n" | sort -u -r | tr "\n" "," | sed "s/,/, /g")"; \
145
- if [ "$$previous" == "$$modname" ]; then \
+ if [ "$$previous" = "$$modname" ]; then \
146
echo "Tags: $(VERSION)-$$mod, $$mod"; \
147
else \
148
- if [ "$$mod" == "minimal" ]; then \
+ if [ "$$mod" = "minimal" ]; then \
149
echo "Tags: $(VERSION)-$$mod, $${TAGS%, }, latest"; \
150
151
echo "Tags: $(VERSION)-$$mod, $${TAGS%, }"; \
0 commit comments