You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by nw...@apache.org on 2016/03/07 19:02:32 UTC

[2/2] lucy-clownfish git commit: Use indelible rel/ namespace for release tags

Use indelible rel/ namespace for release tags


Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/faefec2b
Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/faefec2b
Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/faefec2b

Branch: refs/heads/master
Commit: faefec2b5c43c7ce94a61ba85636d377a99beedc
Parents: 2d107d3
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Mon Mar 7 18:57:28 2016 +0100
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Mon Mar 7 18:57:28 2016 +0100

----------------------------------------------------------------------
 devel/bin/release_commands.pl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/faefec2b/devel/bin/release_commands.pl
----------------------------------------------------------------------
diff --git a/devel/bin/release_commands.pl b/devel/bin/release_commands.pl
index c5a2c3e..147970e 100755
--- a/devel/bin/release_commands.pl
+++ b/devel/bin/release_commands.pl
@@ -143,8 +143,8 @@ say qq|# After the vote has passed...|;
 say qq|###############################################################\n|;
 
 say qq|# Tag the release and delete the RC tags.|;
-say qq|git tag apache-clownfish-$x_y_z_version apache-clownfish-$full_rc_version|;
-say qq|git push origin apache-clownfish-$x_y_z_version|;
+say qq|git tag rel/apache-clownfish-$x_y_z_version apache-clownfish-$full_rc_version|;
+say qq|git push origin rel/apache-clownfish-$x_y_z_version|;
 for ( 1 .. $rc ) {
     my $rc_tag = qq|apache-clownfish-$major.$minor.$micro-rc$_|;
     say qq|git tag -d $rc_tag|;