pyinstaller: remove icon

Remove pyinstaller's default executable icon by setting it to the string 'NONE'.

While we're at it, update a comment.
This commit is contained in:
Rayyan Ansari 2023-02-08 17:45:02 +00:00
parent 978cb163e6
commit 37e958bfa4
No known key found for this signature in database
GPG Key ID: 46A8D18E5BC49D84
1 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,5 @@
# -*- 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
@ -48,7 +48,8 @@ exe = EXE(pyz,
debug=False,
strip=False,
upx=True,
console=True)
console=True,
icon='NONE')
# Build a directory-based binary in addition to a packed
# single file. This allows one to look at all included