Skip to content

Commit 0761a89

Browse files
author
arch
committed
add --noupx flag to windows build (#7)
1 parent cecef04 commit 0761a89

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/windows_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Build Application
4040
shell: bash -l {0}
4141
run: |
42-
pyinstaller --add-data="funscript_editor/config/*;funscript_editor/config" --add-data="assets/*;." --hidden-import "pynput.keyboard._win32" --hidden-import "pynput.mouse._win32" funscript-editor.py
42+
pyinstaller --add-data="funscript_editor/config/*;funscript_editor/config" --add-data="assets/*;." --hidden-import "pynput.keyboard._win32" --hidden-import "pynput.mouse._win32" --noupx funscript-editor.py
4343
- name: Move Documentation to Application Build Directory
4444
shell: bash -l {0}
4545
run: |

build.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ del funscript-editor.spec 2>NUL
66
cd docs/app
77
mkdocs build
88
cd ../..
9-
pyinstaller --add-data="funscript_editor/config/*;funscript_editor/config/" --add-data="assets/*;./" --hidden-import "pynput.keyboard._win32" --hidden-import "pynput.mouse._win32" funscript-editor.py
9+
pyinstaller --add-data="funscript_editor/config/*;funscript_editor/config/" --add-data="assets/*;./" --hidden-import "pynput.keyboard._win32" --hidden-import "pynput.mouse._win32" --noupx funscript-editor.py
1010
move "docs\\app\\site" "dist\\funscript-editor\\funscript_editor\\docs"
1111
copy /Y "funscript_editor\\VERSION.txt" "dist\\funscript-editor\\funscript_editor"
1212
powershell Compress-Archive -LiteralPath "dist/funscript-editor" -DestinationPath "dist/funscript-editor.zip"

0 commit comments

Comments
 (0)