Merge pull request #7327 from RayyanAnsari/pyinstaller-no-icon

pyinstaller: remove icon
This commit is contained in:
TW 2023-02-08 19:09:17 +01:00 committed by GitHub
commit 070c260460
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,5 @@
# -*- mode: python -*- # -*- mode: python -*-
# this pyinstaller spec file is used to build borg binaries on posix platforms # this pyinstaller spec file is used to build borg binaries on posix platforms and Windows
import os, sys import os, sys
@ -48,7 +48,8 @@ exe = EXE(pyz,
debug=False, debug=False,
strip=False, strip=False,
upx=True, upx=True,
console=True) console=True,
icon='NONE')
# Build a directory-based binary in addition to a packed # Build a directory-based binary in addition to a packed
# single file. This allows one to look at all included # single file. This allows one to look at all included