summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2014-12-07 19:09:53 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2014-12-07 19:09:53 +0100
commitcbb031970b20bd30f023efc7ff4b727c1d0087ef (patch)
treec75fee73551e3e74807b462a346b442a0dba250f
parent10f29afaf7b1bc3c0fb6d53f2eb933f2ff6204ce (diff)
downloadATCD-cbb031970b20bd30f023efc7ff4b727c1d0087ef.tar.gz
Don't use a separate branch for updating the version, without it the script is much easier to use in different trees
* ACE/bin/make_release.py:
-rwxr-xr-xACE/bin/make_release.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/ACE/bin/make_release.py b/ACE/bin/make_release.py
index 45a9d1c0073..033b4958ed5 100755
--- a/ACE/bin/make_release.py
+++ b/ACE/bin/make_release.py
@@ -429,15 +429,6 @@ def get_and_update_versions ():
get_comp_versions ("DAnCE")
if opts.update:
- # Make all changes on a workbranch
- workbranch = "ACE+TAO+CIAO-%d_%d_%d-stage" % (comp_versions["ACE_major"],
- comp_versions["ACE_minor"],
- comp_versions["ACE_beta"])
-
- # Checkout a new brancy
- print ("Checking out new branch " + workbranch)
- ex ("cd $DOC_ROOT/ATCD && git checkout -b " + workbranch)
-
files = list ()
files += update_version_files ("ACE")
files += update_version_files ("TAO")
@@ -453,10 +444,6 @@ def get_and_update_versions ():
print "Committing " + str(files)
commit (files)
- print ("Merging workbranch " + workbranch + " to master")
- ex ("cd $DOC_ROOT/ATCD && git checkout master")
- ex ("cd $DOC_ROOT/ATCD && git merge --no-ff " + workbranch + " -m\"" + workbranch + "\"")
-
except:
print "Fatal error in get_and_update_versions."
raise