Skip to content

Commit

Permalink
chore: Update GUI build command to use windowed mode
Browse files Browse the repository at this point in the history
  • Loading branch information
techtanic committed Jul 3, 2024
1 parent 3d75c6d commit 80d1c00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
pip install pyinstaller -U
- name: Build GUI
run: pyinstaller -y -F -c -i "extra/DUCE-LOGO.ico" --clean --name "DUCE-GUI-windows" --add-data "base.py;." --add-data "colors.py;." --add-data "README.md;." --add-data "LICENSE;." "gui.py"
run: pyinstaller -y -F -w -i "extra/DUCE-LOGO.ico" --clean --name "DUCE-GUI-windows" --add-data "base.py;." --add-data "colors.py;." --add-data "README.md;." --add-data "LICENSE;." "gui.py"

- name: Build CLI
run: pyinstaller -y -F -c -i "extra/DUCE-LOGO.ico" --clean --name "DUCE-CLI-windows" --add-data "base.py;." --add-data "colors.py;." --add-data "README.md;." --add-data "LICENSE;." "cli.py"
Expand Down

0 comments on commit 80d1c00

Please sign in to comment.