Skip to content

Commit

Permalink
fix(bake): Replace colon in image names (#1593)
Browse files Browse the repository at this point in the history
  • Loading branch information
lwander committed Apr 21, 2017
1 parent bead9f8 commit d8bceae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/build_google_component_image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ function create_component_image() {
local comp=$1
COMP_VERSION="$(hal version bom $VERSION --artifact-name ${comp} --quiet --color false)"
# Target image is named spinnaker-${comp}-${comp-version} with dashes replacing dots.
TARGET_IMAGE="$(echo spinnaker-${comp}-${COMP_VERSION} | sed 's/\./\-/g')"
TARGET_IMAGE="$(echo spinnaker-${comp}-${COMP_VERSION} | sed 's/[\.:]/\-/g')"
echo $TARGET_IMAGE
CLEANER_INSTANCE="clean-${TARGET_IMAGE}"
BUILD_INSTANCE="build-${TARGET_IMAGE}"
Expand Down

0 comments on commit d8bceae

Please sign in to comment.