]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.1.32
authorfred <fred>
Tue, 18 Nov 1997 23:45:18 +0000 (23:45 +0000)
committerfred <fred>
Tue, 18 Nov 1997 23:45:18 +0000 (23:45 +0000)
bin/release.py

index f18ff01ef73a483b5e27c9125e90dfd1b64c1787..604e1779f0dccbe3d306a09ebba463eb1902300c 100644 (file)
@@ -13,9 +13,20 @@ os.system('rm ../test/*gz')
 os.link(released_tarball(cur_ver), tarball(cur_ver))
 
 
-# not a module, but a script:
+# not a module, but a script (JCN)
 # makepatch.main()
+
+# Module wherefore aren't thou Script
+# A Rose by any other name would be as blonde. --HWN
+
 os.system('python ' + lilydirs.topdir + '/bin/make-patch.py');
 
-os.system('gzip -9 patch*')
+pn = 'patch-%s' % version_tuple_to_str(cur_ver)
+os.system('gzip -9 ' + pn)
+pn = pn + '.gz'
+rel_pn = lilydirs.release_dir + '../patches/' + pn;
+
+os.rename(pn, rel_pn);
+os.link(rel_pn, pn);
+
 os.system('tar cf updeet *gz')