summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2018-02-19 21:46:25 -0500
committerLex Neva <github.com@lexneva.name>2018-02-19 21:46:25 -0500
commit3f95669252d824a62aab99738589c0ebc6439dac (patch)
tree2f9235556b33d1063631bb81415e2740a6831770 /bin
parent633ec88186106b9a9604f418b5f527d6d8ff888d (diff)
don't show console window in Windows
Diffstat (limited to 'bin')
-rwxr-xr-xbin/build-dist2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/build-dist b/bin/build-dist
index 8fa4b59f..fa933780 100755
--- a/bin/build-dist
+++ b/bin/build-dist
@@ -32,7 +32,7 @@ pyinstaller_args+="-p inkscape-0.92.2/share/extensions "
mkdir -p dist/inkstitch/bin
for extension in "$@"; do
if [ "$BUILD" = "windows" ]; then
- wine c:\\Python\\scripts\\pyinstaller.exe $pyinstaller_args ${extension}.py
+ wine c:\\Python\\scripts\\pyinstaller.exe --windowed $pyinstaller_args ${extension}.py
else
# without the LD_LIBRARY_PATH, it seems that pyinstaller can't find all of
# wxpython's shared libraries