application/sis/make_release.py
author teknolog
Wed, 28 Apr 2010 09:47:46 +0100
changeset 64 4a8c3b044a7c
permissions -rw-r--r--
Added Brendan's make_release script before closing that branch

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');