Skip to content

Commit

Permalink
Don't add .dev release part of the version
Browse files Browse the repository at this point in the history
It should be done by Pulp 3 plugins themselves.
Their master branch should contain .dev release segment
in the version identifier of the upcoming release.

closes #4936
https://pulp.plan.io/issues/4936
  • Loading branch information
goosemania committed Jun 17, 2019
1 parent 34f084c commit 930bf2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/.travis/publish_client_gem.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if [[ $DESCRIPTION == 'tags/'$REPORTED_VERSION ]]; then
export VERSION=${REPORTED_VERSION}
else
export EPOCH="$(date +%s)"
export VERSION=${REPORTED_VERSION}.dev.${EPOCH}
export VERSION=${REPORTED_VERSION}.${EPOCH}
fi

export response=$(curl --write-out %{http_code} --silent --output /dev/null https://rubygems.org/gems/{{ plugin_snake_name }}_client/versions/$VERSION)
Expand Down

0 comments on commit 930bf2a

Please sign in to comment.