Skip to content

Commit ad83def

Browse files
authored
Merge pull request #153 from pohly/fix-image-builds
build.make: fix image publishng
2 parents 29bd39b + 5561780 commit ad83def

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: build.make

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ $(CMDS:%=push-multiarch-%): push-multiarch-%: check-pull-base-ref build-%
150150
dockerfile_windows=$$(if [ -e ./cmd/$*/Dockerfile.Windows ]; then echo ./cmd/$*/Dockerfile.Windows; else echo Dockerfile.Windows; fi); \
151151
if [ '$(BUILD_PLATFORMS)' ]; then build_platforms='$(BUILD_PLATFORMS)'; else build_platforms="linux amd64"; fi; \
152152
if ! [ -f "$$dockerfile_windows" ]; then \
153-
build_platforms="$$(echo "$$build_platforms" | sed -e 's/windows *[^ ]* *.exe *[^ ]* *[^ ]*//g' -e 's/; *;/;/g' -e 's/;[ ]*$//')"; \
153+
build_platforms="$$(echo "$$build_platforms" | sed -e 's/windows *[^ ]* *.exe *[^ ]* *[^ ]*//g' -e 's/; *;/;/g' -e 's/;[ ]*$$//')"; \
154154
fi; \
155155
pushMultiArch () { \
156156
tag=$$1; \

0 commit comments

Comments
 (0)