From 8f4b8a6e8cd4758acea40c9ea528aabdc72c1d8f Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Thu, 4 Aug 2016 16:26:53 +0300 Subject: [PATCH] Uncomment rest of the script --- release.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/release.sh b/release.sh index 82705ef..678fd58 100755 --- a/release.sh +++ b/release.sh @@ -92,18 +92,18 @@ read BRANCH_RELEASE=release-$NEW_VERSION # create the release branch from the -develop branch -#git checkout -b $BRANCH_RELEASE $BRANCH_DEV +git checkout -b $BRANCH_RELEASE $BRANCH_DEV # Set our new version to our version file -#echo $NEW_VERSION > $FILE_VERSION +echo $NEW_VERSION > $FILE_VERSION # Create our changelog -#echo "## $NEW_VERSION ($NOW)" > tmpfile -#git log --pretty=format:" - %s" "$BASE_STRING"...HEAD >> tmpfile -#echo "" >> tmpfile -#echo "" >> tmpfile -#cat $FILE_CHANGELOG >> tmpfile -#mv tmpfile $FILE_CHANGELOG +echo "## $NEW_VERSION ($NOW)" > tmpfile +git log --pretty=format:" - %s" "$BASE_STRING"...HEAD >> tmpfile +echo "" >> tmpfile +echo "" >> tmpfile +cat $FILE_CHANGELOG >> tmpfile +mv tmpfile $FILE_CHANGELOG echo -e "$ADJUSTMENTS_MSG" read