fix: set IMAGE variable correctly

This commit is contained in:
Jose Diaz-Gonzalez
2017-12-13 23:37:14 -05:00
committed by GitHub
parent f1c0432375
commit af626a51cc

View File

@@ -10,6 +10,7 @@ tags_deploy_cmd() {
local APP="$2"; local IMAGE_TAG="$3"
verify_app_name "$APP"
local IMAGE="$(get_app_image_name "$APP" "$IMAGE_TAG")"
verify_image "$IMAGE" || return 1
release_and_deploy "$APP" "$IMAGE_TAG"
}