mirror of
https://github.com/dhewm/dhewm3.git
synced 2024-11-22 04:31:02 +00:00
Fix desktop files
"desktop-file-validate" reports the following error: org.dhewm3.Dhewm3.desktop: error: value "dhewm3 "$@"" for key "Exec" in group "Desktop Entry" contains a non-escaped character '$' in a quote, but it should be escaped with two backslashes ("\\$") see https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html#exec-variables
This commit is contained in:
parent
9892438a9b
commit
b565c6c732
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
[Desktop Entry]
|
||||
Comment=dhewm 3 is a Doom 3 GPL source port
|
||||
Categories=Game;Shooter;
|
||||
Exec=dhewm3 +set fs_game d3xp "$@"
|
||||
Exec=dhewm3 +set fs_game d3xp "\\$@"
|
||||
Icon=org.dhewm3.Dhewm3
|
||||
Name=Dhewm3 XP
|
||||
StartupNotify=true
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[Desktop Entry]
|
||||
Comment=dhewm 3 is a Doom 3 GPL source port
|
||||
Categories=Game;Shooter;
|
||||
Exec=dhewm3 "$@"
|
||||
Exec=dhewm3 "\\$@"
|
||||
Icon=org.dhewm3.Dhewm3
|
||||
Name=Dhewm3
|
||||
StartupNotify=true
|
||||
|
|
Loading…
Reference in a new issue