Skip to content

Commit ada5561

Browse files
author
BuvinJ
committed
Version bump. Minor IExpress patch.
1 parent d72b68f commit ada5561

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

distbuilder/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.7.8.35"
1+
__version__ = "0.7.8.36"

distbuilder/iexpress.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -660,11 +660,12 @@ def _scriptToExe( name=None, entryPointScript=None, iExpressConfig=None,
660660
# Code sign the exe
661661
signExe( destPath, iExpressConfig.codeSignConfig )
662662

663-
# Code sign external resource targets
664-
for target in codeSignTargets:
665-
if target in distResources:
666-
targetPath = absPath( target, sourceDir )
667-
signExe( targetPath, codeSignConfig )
663+
# Code sign external resource targets
664+
if codeSignTargets:
665+
for target in codeSignTargets:
666+
if target in distResources:
667+
targetPath = absPath( target, sourceDir )
668+
signExe( targetPath, codeSignConfig )
668669

669670
return dirPath( destPath ), destPath
670671

examples/hello_iexpress/hello_main.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
if "%LIB_DIR%" == "" set "LIB_DIR=."
1+
if "%LIB_DIR%" == "" set "LIB_DIR=%~dp0"
22

33
set "PopupLib=%LIB_DIR%\Popups.bat"
44

0 commit comments

Comments
 (0)