application/sis/make_release.py
author teknolog
Mon, 03 May 2010 15:18:30 +0100
branchsymbian1
changeset 80 ea2321db6cb6
parent 55 f491d534ef9c
permissions -rw-r--r--
Forgot to close file handle on failed download. Fixed now. Also fix for SQLite static library.

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