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:06:34 UTC

[2/2] lucy 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/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/eefbb408
Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/eefbb408
Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/eefbb408

Branch: refs/heads/master
Commit: eefbb4085f69c9951b5cb723ba91770f11fc4ad4
Parents: 962b480
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Mon Mar 7 19:05:06 2016 +0100
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Mon Mar 7 19:05:06 2016 +0100

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


http://git-wip-us.apache.org/repos/asf/lucy/blob/eefbb408/devel/bin/release_commands.pl
----------------------------------------------------------------------
diff --git a/devel/bin/release_commands.pl b/devel/bin/release_commands.pl
index 4bcfe08..3204358 100755
--- a/devel/bin/release_commands.pl
+++ b/devel/bin/release_commands.pl
@@ -155,8 +155,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-lucy-$x_y_z_version apache-lucy-$full_rc_version|;
-say qq|git push origin apache-lucy-$x_y_z_version|;
+say qq|git tag rel/apache-lucy-$x_y_z_version apache-lucy-$full_rc_version|;
+say qq|git push origin rel/apache-lucy-$x_y_z_version|;
 for ( 1 .. $rc ) {
     my $rc_tag = qq|apache-lucy-$major.$minor.$micro-rc$_|;
     say qq|git tag -d $rc_tag|;