Skip to content

Commit

Permalink
Added missing lines in deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
mahype committed Jan 28, 2019
1 parent b996408 commit 5a58136
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ if git show-ref --quiet --tags --verify -- "refs/tags/$NEWVERSION1"
echo "Version $NEWVERSION1 already exists as git tag. Skipping."
else
printf "Tagging new Git version..."
#git tag -a "$NEWVERSION1" -m "tagged version $NEWVERSION1"
git tag -a "$NEWVERSION1" -m "tagged version $NEWVERSION1"
echo "Done."

printf "Pushing new Git tag..."
#git push --quiet --tags
git push --quiet --tags
echo "Done."
fi

Expand Down Expand Up @@ -167,11 +167,11 @@ rm /tmp/wppdcommitmsg.tmp
echo "Done."

printf "Committing new SVN version..."
# svn commit --username "$SVNUSER" --password "$SVNPASS" --quiet -m "$COMMITMSG"
svn commit --username "$SVNUSER" --password "$SVNPASS" --quiet -m "$COMMITMSG"
echo "Done."

printf "Tagging and committing new SVN tag..."
#svn copy $SVNURL/trunk $SVNURL/tags/$NEWVERSION1 --quiet -m "tagged version $NEWVERSION1"
svn copy $SVNURL/trunk $SVNURL/tags/$NEWVERSION1 --quiet -m "tagged version $NEWVERSION1"
echo "Done."

printf "Removing temporary directory %s..." "$SVNPATH"
Expand Down

0 comments on commit 5a58136

Please sign in to comment.