Skip to content

Commit

Permalink
Merge pull request #20 from digitalf0x/fix-ci-unixpath
Browse files Browse the repository at this point in the history
[Fix] ci: Use Unix paths for PyInstaller spec
  • Loading branch information
Z4urce authored Nov 14, 2024
2 parents c745b1f + 540e594 commit 9bfa945
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hapticpancake.spec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ datas += tmp_ret[0]; binaries += tmp_ret[1]; hiddenimports += tmp_ret[2]


a = Analysis(
['BridgeApp\\main.py'],
['BridgeApp/main.py'],
pathex=[],
binaries=binaries,
datas=datas,
Expand Down Expand Up @@ -41,5 +41,5 @@ exe = EXE(
target_arch=None,
codesign_identity=None,
entitlements_file=None,
icon=['Images\\icon.ico'],
icon=['Images/icon.ico'],
)

0 comments on commit 9bfa945

Please sign in to comment.