# HG changeset patch # User Brendan Donegan # Date 1268515688 0 # Node ID f491d534ef9c9f68b10d3415dd83ba8a72cbf489 # Parent 21ffe65592978ac3c1a667d673d30f5206bf2aa0 Added a script to generate the SIS with updated version. WIP. diff -r 21ffe6559297 -r f491d534ef9c application/sis/make_release.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/application/sis/make_release.py Sat Mar 13 21:28:08 2010 +0000 @@ -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