equal
deleted
inserted
replaced
|
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'); |