You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2014/08/13 09:34:48 UTC

svn commit: r1617671 - /manifoldcf/release-scripts/next_major_version.py

Author: kwright
Date: Wed Aug 13 07:34:47 2014
New Revision: 1617671

URL: http://svn.apache.org/r1617671
Log:
Debug

Modified:
    manifoldcf/release-scripts/next_major_version.py

Modified: manifoldcf/release-scripts/next_major_version.py
URL: http://svn.apache.org/viewvc/manifoldcf/release-scripts/next_major_version.py?rev=1617671&r1=1617670&r2=1617671&view=diff
==============================================================================
--- manifoldcf/release-scripts/next_major_version.py (original)
+++ manifoldcf/release-scripts/next_major_version.py Wed Aug 13 07:34:47 2014
@@ -408,7 +408,7 @@ def commit_tree(tree_directory_path, com
 def create_branch(trunk_url, branch_url, branch_message):
     """ Create a branch with the given branch message """
     svn_command([ "-m", branch_message, "copy", trunk_url, branch_url])
-    #print "Pretend create branch..."
+    #print "Pretend create branch... %s to %s, message %s" % (trunk_url, branch_url, branch_message)
 
 def new_major_version(legacy_major_version, new_trunk_major_version, working_directory):
     """ Create a legacy branch, and modify trunk also to reset versions """
@@ -435,7 +435,6 @@ def new_major_version(legacy_major_versi
     
     # Directly copy trunk to branch, with NO other changes
     print >>sys.stderr, "Creating %sx dev branch..." % legacy_major_version
-    copy_trunk_to_branch(trunk_url, branch_url, legacy_major_version);
     create_branch(trunk_url, branch_url, "Create a %sx dev branch." % legacy_major_version)
 
     # Check out trunk.