Skip to content

Commit ec05c07

Browse files
committed
Don't auto-tag the release
Because the add/remove needs to happen first.
1 parent 0436db3 commit ec05c07

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

bin/prepare-svn-release.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,6 @@ for file in $( cat "$EDIT_FLOW_GIT_DIR/.svnignore" 2>/dev/null ); do
7070
done
7171
echo "Done!"
7272

73-
# Tag the release.
74-
svn cp trunk tags/$TARGET
75-
7673
# Instructions for next steps
7774
echo ""
7875
echo "================"
@@ -82,12 +79,16 @@ echo "Please validate 'svn status' results before committing."
8279
echo ""
8380
echo "Some helpful commands:"
8481
echo ""
82+
echo "- goto dir"
83+
echo "cd $EDIT_FLOW_SVN_DIR"
8584
echo "- rm files:"
8685
echo "svn st | grep ^\! | awk '{print \$2}' | xargs svn rm"
8786
echo "- add files:"
8887
echo "svn st | grep ^? | awk '{print \$2}' | xargs svn add"
8988
echo "- review changes:"
9089
echo "svn diff | colordiff | less -FRX"
90+
echo "- tag the release"
91+
echo "svn cp trunk tags/$TARGET"
9192
echo ""
9293
echo "Are there any new files that shouldn't be deployed?"
9394
echo "Please add them to .svnignore in the GitHub repo."

0 commit comments

Comments
 (0)