macOS build: do not strip (#2320)

pull/2332/head
Kaalleen 2023-05-28 20:54:42 +02:00 zatwierdzone przez GitHub
rodzic c95a28270d
commit 6dfb545286
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -48,6 +48,8 @@ if [ "$BUILD" = "windows" ]; then
pyinstaller_args+="--i electron/build/icons/win/inkstitch.ico "
pyinstaller_args+="--version-file installer_scripts/file_version_info.txt "
python -m PyInstaller $pyinstaller_args inkstitch.py
elif [ "$BUILD" = "osx" ]; then
python -m PyInstaller $pyinstaller_args inkstitch.py;
else
python -m PyInstaller $pyinstaller_args --strip inkstitch.py;
fi