Skip to content

Commit

Permalink
bin/publish: Small tweak for new publish logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Edward Muller committed May 16, 2017
1 parent 926f781 commit fbad79e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/publish
Expand Up @@ -77,7 +77,7 @@ echo "Publishing ${BUILDPACK}"
heroku buildkits:publish ${BUILDPACK}
PVER="$(heroku buildkits:revisions ${BUILDPACK} | awk '/^v/ {print $1; exit}')"

if [ "${PVER}" != "${NVER}" ]; then
if [ "${PVER}" != "v${NVER}" ]; then
errExit "Published version (${PVER}) and calculated version (${NVER}) do not match."
fi

Expand Down

0 comments on commit fbad79e

Please sign in to comment.