From 72bf72480b99363fde4d291567a89a94c3185c1c Mon Sep 17 00:00:00 2001 From: JennaHuntsman <jenna.salem.sf@gmail.com> Date: Tue, 5 Jul 2022 13:42:27 -0400 Subject: [PATCH] Fix oversight in desktop file naming to account for channel names. --- indra/newview/linux_tools/refresh_desktop_app_entry.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/linux_tools/refresh_desktop_app_entry.sh b/indra/newview/linux_tools/refresh_desktop_app_entry.sh index affcfd32c82..7ae108ef115 100755 --- a/indra/newview/linux_tools/refresh_desktop_app_entry.sh +++ b/indra/newview/linux_tools/refresh_desktop_app_entry.sh @@ -57,7 +57,7 @@ desktopfile print "Installing menu entries via XDG..." xdg-icon-resource install --novendor --size 256 "${install_prefix}/${VIEWERNAME,,}_icon.png" ${VIEWERNAME}-Viewer #NOTE: Above command takes the path to the icon to install && The name of the icon to be used by XDG. This should always be in the format of "x-Viewer" to avoid potential naming conflicts, as per XDG spec. - xdg-desktop-menu install --novendor "${installation_prefix}"/${VIEWERNAME,,}-viewer.desktop + xdg-desktop-menu install --novendor "${installation_prefix}"/${VIEWERNAME,,}-${CHANNELNAME}-viewer.desktop } if [ "$UID" == "0" ]; then -- GitLab