summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2023-06-24 10:38:58 +0200
committerGitHub <noreply@github.com>2023-06-24 10:38:58 +0200
commit4c562a71273d44e05efe64d4d37bd02c61448691 (patch)
treefc01cf0c145d29413ebe4bec5a7e7140fae1159f /bin
parenta68f6037a98be229f04883d26698a21002f4c86b (diff)
linux: remove hidden import of gio and wx (#2386)
Diffstat (limited to 'bin')
-rwxr-xr-xbin/build-python4
1 files changed, 1 insertions, 3 deletions
diff --git a/bin/build-python b/bin/build-python
index 2a8cda7c..4c27e5d8 100755
--- a/bin/build-python
+++ b/bin/build-python
@@ -15,7 +15,7 @@ pyinstaller_args+="--log-level DEBUG "
# This adds bundle identifier in reverse DSN format for macos
if [ "$BUILD" = "osx" ]; then
pyinstaller_args+="--osx-bundle-identifier org.inkstitch.app "
- pyinstaller_args+="-i electron/build/icons/mac/inkstitch.icns"
+ pyinstaller_args+="-i electron/build/icons/mac/inkstitch.icns "
if [[ -z ${GITHUB_REF} ]]; then
echo "Dev or Local Build"
else
@@ -25,8 +25,6 @@ fi
if [ "$BUILD" = "linux" ]; then
pyinstaller_args+="--hidden-import gi.repository.Gtk "
- pyinstaller_args+="--hidden-import gi.repository.Gio "
- pyinstaller_args+="--hidden-import wx "
fi