Yubico / yubikey-neo-manager

Cross platform personalization tool for the YubiKey NEO
https://developers.yubico.com/yubikey-neo-manager/
BSD 2-Clause "Simplified" License
56 stars 12 forks source link

neoman.desktop fails desktop file validation #25

Closed amak79 closed 10 years ago

amak79 commented 10 years ago

The Gentoo Linux package manager automatically runs desktop-file-validate (provided by desktop-file-utils on Debian) to ensure .desktop files are correctly formatted.

resources/neoman.desktop fails validation with the following error:

$ desktop-file-validate /usr/share/applications/neoman.desktop 
/usr/share/applications/neoman.desktop: error: value "YubiKey;NEO;Manager" for locale string list key "Keywords" in group "Desktop Entry" does not have a semicolon (';') as trailing character

The fix is trivial and involves adding a ; to the end of the Keywords line:

Keywords=YubiKey;NEO;Manager;
dainnilsson commented 10 years ago

Thanks!