summaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2022-02-06 21:02:43 +0000
committerCalum Lind <calumlind+deluge@gmail.com>2022-02-06 21:02:43 +0000
commite87236514d0f60d1f6295ac2695555ecb695c2cc (patch)
treebb0e4b8c96de0e5b60316b9149af238beffaa850 /packaging
parent2fb41341c94fe1d53c2c9d48e74e163c725c5857 (diff)
downloaddeluge-e87236514d0f60d1f6295ac2695555ecb695c2cc.tar.gz
deluge-e87236514d0f60d1f6295ac2695555ecb695c2cc.tar.bz2
deluge-e87236514d0f60d1f6295ac2695555ecb695c2cc.zip
[Build] Fix entry point build errors
Fixed a mistake settings entry points in setup.py. Replaced with simpler logic since gui_scripts only affect Windows. Fixed entry point changes affecting pyinstaller build Corrected deluge-web.exe to have no console instead of deluge-web-debug.exe
Diffstat (limited to 'packaging')
-rw-r--r--packaging/win/delugewin.spec8
1 files changed, 4 insertions, 4 deletions
diff --git a/packaging/win/delugewin.spec b/packaging/win/delugewin.spec
index 9dadca244..360198ea0 100644
--- a/packaging/win/delugewin.spec
+++ b/packaging/win/delugewin.spec
@@ -125,7 +125,7 @@ executables = {
'console': True,
'gtk': False,
},
- 'deluged-script.py': {
+ 'deluged-script.pyw': {
'name': 'deluged',
'console': False,
'gtk': False,
@@ -137,12 +137,12 @@ executables = {
},
'deluge-web-debug-script.py': {
'name': 'deluge-web-debug',
- 'console': False,
+ 'console': True,
'gtk': False,
},
- 'deluge-web-script.py': {
+ 'deluge-web-script.pyw': {
'name': 'deluge-web',
- 'console': True,
+ 'console': False,
'gtk': False,
},
}