Skip to content

Commit

Permalink
Update scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
leerho committed Jul 19, 2019
1 parent ac21832 commit 2fc85e7
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions scripts/bashDeployToDist.sh
Expand Up @@ -43,11 +43,13 @@ echo " 1.0.X-incubating"
echo
echo "5. Locally create a tag with a name of one of the following forms:"
echo " 1.0.0"
echo " 1.0.0-SNAPSHOT"
echo " 1.0.0-SNAPSHOTNN"
echo " 1.0.0-RCNN"
echo " 1.0.0-incubating"
echo " 1.0.0-incubating-SNAPSHOT"
echo " 1.0.0-incubating-SNAPSHOTNN"
echo " 1.0.0-incubating-RCNN"
echo
echo " 'SNAPSHOT', if relevant, is always at the end of the version string and capitalized."
echo " 'SNAPSHOT', if relevant, is always capitalized."
echo " Note: SNAPSHOT deployments are never relevant for the 'dist/release' branch."
echo
echo " Commit the branch and tag back to the remote origin"
Expand Down Expand Up @@ -90,7 +92,7 @@ FileVersion=
LeafDir=

### SNAPSHOT ?
if [[ $Tag =~ .*-SNAPSHOT ]];
if [[ $Tag =~ .*-SNAPSHOT[0-9]* ]];
then
echo
echo "This Tag is for a SNAPSHOT."
Expand Down

0 comments on commit 2fc85e7

Please sign in to comment.