Skip to content
This repository has been archived by the owner on Nov 17, 2024. It is now read-only.

fix(build): simplify pyinstaller script #221

Merged
merged 1 commit into from
Aug 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions scripts/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,8 @@ def build():
pyinstaller_args.append('--console')

# fix args for windows
arg_count = 0
for arg in pyinstaller_args:
pyinstaller_args[arg_count] = arg.replace(':', ';')
arg_count += 1
for index, arg in enumerate(pyinstaller_args):
pyinstaller_args[index] = arg.replace(':', ';')

# no point in having macos/linux versions for this project

Expand Down