Use local certs.

This commit is contained in:
Bastian Kleineidam 2013-12-12 23:27:30 +01:00
parent 8ca9fae674
commit b9c75ddd0c
1 changed files with 1 additions and 1 deletions

View File

@ -362,7 +362,7 @@ end;
def sign (self): def sign (self):
"""Sign InnoSetup installer with local self-signed certificate.""" """Sign InnoSetup installer with local self-signed certificate."""
print("*** signing the inno setup installer ***") print("*** signing the inno setup installer ***")
pfxfile = r'C:\%s.pfx' % self.lname pfxfile = r'scripts\%s.pfx' % self.lname
if os.path.isfile(pfxfile): if os.path.isfile(pfxfile):
path = get_windows_sdk_path() path = get_windows_sdk_path()
signtool = os.path.join(path, "bin", "signtool.exe") signtool = os.path.join(path, "bin", "signtool.exe")