Skip to content

Commit

Permalink
Windows Python 3.11.9 debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Henri Wahl committed Aug 8, 2024
1 parent 15be931 commit 04f4c1c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions build/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,6 @@ def winmain():
'..\\nagstamon.py'],
shell=True)

print(subprocess)

if SIGNING:
# environment variables will be used by powershell script for signing
subprocess.run(['pwsh.exe', './windows/code_signing.ps1', 'build/Nagstamon/Nagstamon.exe'])
Expand Down Expand Up @@ -152,7 +150,7 @@ def winmain():
print(r'/Dresources={0}{1}resources'.format(DIR_BUILD_NAGSTAMON, os.sep))

# execute InnoSetup with many variables set by ISCC.EXE outside .iss file
subprocess.call([ISCC,
result = subprocess.call([ISCC,
r'/Dsource={0}'.format(DIR_BUILD_NAGSTAMON),
r'/Dversion_is={0}'.format(VERSION_IS),
r'/Dversion={0}'.format(VERSION),
Expand All @@ -162,6 +160,9 @@ def winmain():
r'/O{0}{1}dist'.format(CURRENT_DIR, os.sep),
r'{0}{1}windows{1}nagstamon.iss'.format(CURRENT_DIR, os.sep)], shell=True)


print(result)

if SIGNING:
# environment variables will be used by powershell script for signing
subprocess.run(['pwsh.exe', '../windows/code_signing.ps1', '*.exe'])
Expand Down

0 comments on commit 04f4c1c

Please sign in to comment.