Skip to content

Commit

Permalink
Fix virtualenv import lookup during packaging.
Browse files Browse the repository at this point in the history
  • Loading branch information
luckytyphlosion committed Feb 23, 2022
1 parent 9f7e759 commit 4da8101
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def main():
release_config = yaml.safe_load(f)

print("Building record_ghost.exe!")
subprocess.run(("pyinstaller", "-F", "record_ghost.py"), check=True)
subprocess.run(("pyinstaller", "-F", "record_ghost.py", "--paths", "virt_win/Lib/site-packages"), check=True)

dolphin_lua_core_dirname = release_config["dolphin_lua_core_dirname"]
release_name = release_config["release_name"]
Expand Down

0 comments on commit 4da8101

Please sign in to comment.