Skip to content

Commit

Permalink
ci: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Feb 2, 2021
1 parent 786abf3 commit 1d37d13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build-recipes/win_PyJibe.spec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if not exists("./{}Launcher.py".format(NAME)):
"Please run pyinstaller from the 'build-recipes' directory.")


a = Analysis([NAME * "Launcher.py"],
a = Analysis([NAME + "Launcher.py"],
pathex=["."],
hookspath=["."],
runtime_hooks=None)
Expand All @@ -26,7 +26,7 @@ exe = EXE(pyz,
debug=False,
strip=False,
upx=False,
icon=NAME * ".ico",
icon=NAME + ".ico",
console=False)

coll = COLLECT(exe,
Expand Down

0 comments on commit 1d37d13

Please sign in to comment.