forked from LBRYCommunity/lbry-sdk
Ignore msi_data shortcuts, which didn't work anyway
This commit is contained in:
parent
30b04ed0c2
commit
ed2d2c6f86
1 changed files with 19 additions and 19 deletions
|
@ -44,30 +44,30 @@ console_scripts = ['lbrynet-stdin-uploader = lbrynet.lbrynet_console.LBRYStdinUp
|
||||||
'stop-lbrynet-daemon = lbrynet.lbrynet_daemon.LBRYDaemonControl:stop',
|
'stop-lbrynet-daemon = lbrynet.lbrynet_daemon.LBRYDaemonControl:stop',
|
||||||
'lbrynet-cli = lbrynet.lbrynet_daemon.LBRYDaemonCLI:main']
|
'lbrynet-cli = lbrynet.lbrynet_daemon.LBRYDaemonCLI:main']
|
||||||
|
|
||||||
shortcut_table = [
|
# shortcut_table = [
|
||||||
('DesktopShortcut', # Shortcut
|
# ('DesktopShortcut', # Shortcut
|
||||||
'DesktopFolder', # Directory
|
# 'DesktopFolder', # Directory
|
||||||
'lbrynet', # Name
|
# 'LBRY 1', # Name
|
||||||
'TARGETDIR', # Component
|
# 'TARGETDIR', # Component
|
||||||
'[TARGETDIR]\LBRY.exe', # Target
|
# '[TARGETDIR]\LBRY.exe', # Target
|
||||||
None, # Arguments
|
# None, # Arguments
|
||||||
None, # Description
|
# None, # Description
|
||||||
None, # Hotkey
|
# None, # Hotkey
|
||||||
win_icon, # Icon
|
# win_icon, # Icon
|
||||||
None, # IconIndex
|
# None, # IconIndex
|
||||||
None, # ShowCmd
|
# None, # ShowCmd
|
||||||
'TARGETDIR', # WkDir
|
# 'TARGETDIR', # WkDir
|
||||||
),
|
# ),
|
||||||
]
|
# ]
|
||||||
|
#
|
||||||
# Now create the table dictionary
|
# # Now create the table dictionary
|
||||||
msi_data = {'Shortcut': shortcut_table}
|
# msi_data = {'Shortcut': shortcut_table}
|
||||||
|
|
||||||
bdist_msi_options = {
|
bdist_msi_options = {
|
||||||
# 'upgrade_code': '{66620F3A-DC3A-11E2-B341-002219E9B01F}',
|
# 'upgrade_code': '{66620F3A-DC3A-11E2-B341-002219E9B01F}',
|
||||||
'add_to_path': False,
|
'add_to_path': False,
|
||||||
'initial_target_dir': r'[LocalAppDataFolder]\LBRY',
|
'initial_target_dir': r'[LocalAppDataFolder]\LBRY',
|
||||||
'data': msi_data,
|
# 'data': msi_data,
|
||||||
}
|
}
|
||||||
|
|
||||||
build_exe_options = {
|
build_exe_options = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue