Skip to content

Commit

Permalink
Fix macOS/Linux binary path
Browse files Browse the repository at this point in the history
  • Loading branch information
dhinakg committed Sep 2, 2024
1 parent a714b4a commit 87a3f01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TrollRestore.spec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ binaries = []
if platform.system() == 'Windows':
binaries += [(f"{Path(pytun_pmd3.__file__).parent}/wintun/*", "pytun_pmd3/wintun/bin")]
else:
binaries += [(f"{Path(pytun_pmd3.__file__).parent}/pytun_pmd3", "pytun_pmd3")]
binaries += [(f"{Path(pytun_pmd3.__file__).parent}", "pytun_pmd3")]

a = Analysis(
['trollstore.py'],
Expand Down

0 comments on commit 87a3f01

Please sign in to comment.