# HG changeset patch # User teknolog # Date 1272444466 -3600 # Node ID 4a8c3b044a7cc5fc62242c6528633fd0fd993a32 # Parent aefdc579987d470aa22da5648c739d5daaca273b Added Brendan's make_release script before closing that branch diff -r aefdc579987d -r 4a8c3b044a7c application/sis/make_release.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/application/sis/make_release.py Wed Apr 28 09:47:46 2010 +0100 @@ -0,0 +1,14 @@ +import os; + +#del *.sis - delete all sis files python style +os.system('del *.sis'); + +#update 'build' number in PKG file +os.system('hg log -l 1 > temp.txt'); + +os.system('makesis -d%EPOCROOT% podcatcher_udeb.pkg'); +os.system('signsis podcatcher_udeb.sis podcatcher_udeb_signed.sis podcast.cer podcast.key'); + +#update 'build' number in PKG file +os.system('makesis -d%EPOCROOT% podcatcher_urel.pkg'); +os.system('signsis podcatcher_urel.sis podcatcher_urel_signed.sis podcast.cer podcast.key'); \ No newline at end of file