# HG changeset patch # User teknolog # Date 1272444783 -3600 # Node ID bb78b150af5ef86248d273c7ddad3f3413e377e5 # Parent 31e34b8e2878047a9638213a04dff6d03fdc4b08# Parent f491d534ef9c9f68b10d3415dd83ba8a72cbf489 merge diff -r 31e34b8e2878 -r bb78b150af5e 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:53:03 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