Skip to content

Commit

Permalink
Merge pull request #14225 from rook/mergify/bp/release-1.14/pr-14221
Browse files Browse the repository at this point in the history
ci: remove extra comma from platforms (backport #14221)
  • Loading branch information
travisn committed May 16, 2024
2 parents 5723faf + 91cbf93 commit 28c0a78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/release/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ DOCKER_REGISTRY ?= rook
REGISTRIES ?= $(DOCKER_REGISTRY)
IMAGE_ARCHS := $(subst linux_,,$(filter linux_%,$(PLATFORMS)))
IMAGE_PLATFORMS := $(subst _,/,$(subst $(SPACE),$(COMMA),$(filter linux_%,$(PLATFORMS))))
IMAGE_PLATFORMS_COMMA=$(shell echo "$(IMAGE_PLATFORMS)" | sed 's/ /,/')
IMAGE_PLATFORMS_COMMA := $(shell echo "$(IMAGE_PLATFORMS)" | sed 's/ /,/g' | sed 's/.$$//')

S3_BUCKET ?= rook.releases
S3_CP := aws s3 cp --only-show-errors
Expand Down

0 comments on commit 28c0a78

Please sign in to comment.