Skip to content

Commit

Permalink
Merge pull request #14221 from subhamkrai/remove-extra-comma
Browse files Browse the repository at this point in the history
ci: remove extra comma from platforms
  • Loading branch information
travisn committed May 16, 2024
2 parents 07768b1 + ea159ad commit bde9b40
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 bde9b40

Please sign in to comment.