Skip to content

Commit

Permalink
Merge pull request kubernetes#259 from dims/remove-stray-debug-echo-f…
Browse files Browse the repository at this point in the history
…rom-makefile

Remove stray debug echo from Makefile
  • Loading branch information
k8s-ci-robot authored Aug 3, 2018
2 parents cfbc441 + 2ab975d commit 5a618dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion guestbook/php-redis/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ all-container: $(addprefix sub-container-,$(ALL_ARCH))

all-push: $(addprefix sub-push-,$(ALL_ARCH))
docker manifest create --amend $(IMAGE):$(TAG) $(shell echo $(ALL_ARCH) | sed -e "s~[^ ]*~$(IMAGE)\-&:$(TAG)~g")
@for arch in $(ALL_ARCH); do echo docker manifest annotate --arch $${arch} ${IMAGE}:${TAG} ${IMAGE}-$${arch}:${TAG}; done
@for arch in $(ALL_ARCH); do docker manifest annotate --arch $${arch} ${IMAGE}:${TAG} ${IMAGE}-$${arch}:${TAG}; done
docker manifest push ${IMAGE}:${TAG}

container: .container-$(ARCH)
Expand Down
2 changes: 1 addition & 1 deletion guestbook/redis-slave/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ all-container: $(addprefix sub-container-,$(ALL_ARCH))

all-push: $(addprefix sub-push-,$(ALL_ARCH))
docker manifest create --amend $(IMAGE):$(TAG) $(shell echo $(ALL_ARCH) | sed -e "s~[^ ]*~$(IMAGE)\-&:$(TAG)~g")
@for arch in $(ALL_ARCH); do echo docker manifest annotate --arch $${arch} ${IMAGE}:${TAG} ${IMAGE}-$${arch}:${TAG}; done
@for arch in $(ALL_ARCH); do docker manifest annotate --arch $${arch} ${IMAGE}:${TAG} ${IMAGE}-$${arch}:${TAG}; done
docker manifest push ${IMAGE}:${TAG}

container: .container-$(ARCH)
Expand Down

0 comments on commit 5a618dd

Please sign in to comment.