Skip to content

Commit 37e958b

Browse files
committed
pyinstaller: remove icon
Remove pyinstaller's default executable icon by setting it to the string 'NONE'. While we're at it, update a comment.
1 parent 978cb16 commit 37e958b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

scripts/borg.exe.spec

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- mode: python -*-
2-
# this pyinstaller spec file is used to build borg binaries on posix platforms
2+
# this pyinstaller spec file is used to build borg binaries on posix platforms and Windows
33

44
import os, sys
55

@@ -48,7 +48,8 @@ exe = EXE(pyz,
4848
debug=False,
4949
strip=False,
5050
upx=True,
51-
console=True)
51+
console=True,
52+
icon='NONE')
5253

5354
# Build a directory-based binary in addition to a packed
5455
# single file. This allows one to look at all included

0 commit comments

Comments
 (0)