[Prohect] Updaded release scripts

This commit is contained in:
Robert von Burg 2017-03-06 10:13:01 +01:00
parent 2f6930848e
commit a60ef69884
2 changed files with 3 additions and 4 deletions

View File

@ -58,6 +58,6 @@ fi
echo -e "\nINFO: Release ${releaseVersion} deployed to Maven Central."
echo -e "INFO: Remember, it can take up to 10minutes to be available, and 2 hours for all synching."
echo -e "\nRepository is at: https://oss.sonatype.org/service/local/repositories/releases/content/"
echo -e "\nRepository is at: https://oss.sonatype.org/service/local/repositories/releases/content/ch/eitchnet/"
exit 0

View File

@ -2,14 +2,13 @@
# usage
if [ $# != 2 ] ; then
echo -e "Usage: ${0} <release_version> <hotfix_version>"
echo -e "Usage: ${0} <release_branch> <hotfix_version>"
exit 1
fi
# Confirm
releaseVersion="${1}"
releaseBranch="release/${1}"
releaseBranch="${1}"
hotfixVersion="${2}"
echo -e "INFO: Do you want to make hotfix version ${hotfixVersion} from release branch ${releaseBranch}? y/n"
read a