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

Commit

Permalink
fix(build): simplify pyinstaller script
Browse files Browse the repository at this point in the history
  • Loading branch information
ReenigneArcher committed Aug 13, 2024
1 parent 9902610 commit 39d8f06
Showing 1 changed file with 2 additions and 4 deletions.
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

0 comments on commit 39d8f06

Please sign in to comment.