From: fred Date: Tue, 18 Nov 1997 23:45:18 +0000 (+0000) Subject: lilypond-0.1.32 X-Git-Tag: release/1.5.59~6026 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=007a05b0c0a2bbacd7af0b85c09bb9231e4d4b44;p=lilypond.git lilypond-0.1.32 --- diff --git a/bin/release.py b/bin/release.py index f18ff01ef7..604e1779f0 100644 --- a/bin/release.py +++ b/bin/release.py @@ -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')