application/sis/make_release.py
branchsymbian1
changeset 86 a9d05a49b7cd
parent 85 6d6eecde68e8
child 87 f0de05da6d65
equal deleted inserted replaced
85:6d6eecde68e8 86:a9d05a49b7cd
     1 import os;
       
     2 
       
     3 #del *.sis - delete all sis files python style
       
     4 os.system('del *.sis');
       
     5 
       
     6 #update 'build' number in PKG file
       
     7 os.system('hg log -l 1 > temp.txt');
       
     8 
       
     9 os.system('makesis -d%EPOCROOT% podcatcher_udeb.pkg');
       
    10 os.system('signsis podcatcher_udeb.sis podcatcher_udeb_signed.sis podcast.cer podcast.key');
       
    11 
       
    12 #update 'build' number in PKG file
       
    13 os.system('makesis -d%EPOCROOT% podcatcher_urel.pkg');
       
    14 os.system('signsis podcatcher_urel.sis podcatcher_urel_signed.sis podcast.cer podcast.key');