application/sis/make_release.py
changeset 64 4a8c3b044a7c
equal deleted inserted replaced
63:aefdc579987d 64:4a8c3b044a7c
       
     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');