Skip to content

Commit

Permalink
Adding extra verbose when running pyinstaller
Browse files Browse the repository at this point in the history
  • Loading branch information
dbouget committed Aug 25, 2023
1 parent 786c3b9 commit e983f20
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
run: |
pip install pyinstaller==5.0
mkdir tmp_dependencies
pyinstaller --noconfirm --clean assets/main.spec
pyinstaller --log-level DEBUG --noconfirm --clean assets/main.spec
- name: Make installer
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_macos_m1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
pip3 install pyinstaller==5.0
pip3 install --upgrade PyInstaller pyinstaller-hooks-contrib
mkdir tmp_dependencies
pyinstaller --noconfirm --clean assets/main_arm.spec
pyinstaller --log-level DEBUG --noconfirm --clean assets/main_arm.spec
- name: Make installer
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
run: |
pip install pyinstaller==5.0
mkdir tmp_dependencies
pyinstaller --noconfirm --clean assets/main.spec
pyinstaller --log-level DEBUG --noconfirm --clean assets/main.spec
- name: Make installer
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
run: |
pip install pyinstaller==5.0
mkdir tmp_dependencies
pyinstaller --noconfirm --clean assets/main.spec
pyinstaller --log-level DEBUG --noconfirm --clean assets/main.spec
- name: Make installer
run: |
Expand Down

0 comments on commit e983f20

Please sign in to comment.