application/sis/make_release.py
author teknolog
Sat, 01 May 2010 12:35:34 +0100
changeset 74 add4bcf06298
parent 55 f491d534ef9c
permissions -rw-r--r--
Workaround to allow Podcatcher to start even if RCmManager.Open returns -1, which it does for some reasaon in PDK 3.0.h

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