Skip to content

Commit

Permalink
Fix icon install directory and add install of svg icon
Browse files Browse the repository at this point in the history
  • Loading branch information
nopeinomicon committed Dec 7, 2020
1 parent b9b6b22 commit 15968da
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,9 @@
share_dir = user_share
data_files += [
# Menu icon
(os.path.join(share_dir, 'icons/hicolor/128x128/apps/'), ['icons/electron-cash.png']),
(os.path.join(share_dir, 'pixmaps/'), ['icons/electron-cash.png']),
(os.path.join(share_dir, 'icons/hicolor/256x256/apps/'), ['icons/electron-cash.png']),
(os.path.join(share_dir, 'pixmaps/'), ['icons/electron-cash.png']),
(os.path.join(share_dir, 'icons/hicolor/scaleable/apps.'), ['icons/electron-cash.svg']),

This comment has been minimized.

Copy link
@hegjon

hegjon Mar 5, 2021

Typo, the dot should be replaced by /

This comment has been minimized.

Copy link
@EchterAgo

This comment has been minimized.

Copy link
@cculianu

cculianu Mar 11, 2021

Collaborator

Argh!

# Menu entry
(os.path.join(share_dir, 'applications/'), ['electron-cash.desktop']),
# App stream (store) metadata
Expand Down

0 comments on commit 15968da

Please sign in to comment.