Skip to content

Commit

Permalink
Update pyinstaller build command for vinput
Browse files Browse the repository at this point in the history
- Added `--collect-all vinput` flag to pyinstaller build command in
  `dist.py` to collect all files for vinput.

Signed-off-by: Slendi <[email protected]>
  • Loading branch information
xslendix committed Jul 16, 2024
1 parent 3afe37e commit ef73740
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def run_command(command: str):

if not (args.no_build or args.ui_only):
# Pyinstaller command
build_cmd = "pyinstaller --onefile --name nexus nexus/__main__.py --icon ui/images/icon.ico"
build_cmd = "pyinstaller --onefile --name nexus nexus/__main__.py --icon ui/images/icon.ico --collect-all vinput"

if os_name == "win":
print("Building windowed executable...")
Expand Down

0 comments on commit ef73740

Please sign in to comment.