mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-02 22:48:40 +00:00
Fix data_files check in setup.py
This commit is contained in:
parent
59c2520e0d
commit
72d381a3b6
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -489,7 +489,7 @@ cmdclass = {
|
||||||
|
|
||||||
# Data files to be installed to the system.
|
# Data files to be installed to the system.
|
||||||
_data_files = []
|
_data_files = []
|
||||||
if not windows_check() or not osx_check():
|
if not windows_check() and not osx_check():
|
||||||
_data_files = [
|
_data_files = [
|
||||||
('share/icons/hicolor/scalable/apps', ['deluge/data/icons/scalable/apps/deluge.svg']),
|
('share/icons/hicolor/scalable/apps', ['deluge/data/icons/scalable/apps/deluge.svg']),
|
||||||
('share/icons/hicolor/128x128/apps', ['deluge/data/icons/hicolor/128x128/apps/deluge.png']),
|
('share/icons/hicolor/128x128/apps', ['deluge/data/icons/hicolor/128x128/apps/deluge.png']),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue