diff --git a/indra/newview/linux_tools/refresh_desktop_app_entry.sh b/indra/newview/linux_tools/refresh_desktop_app_entry.sh index 4a978fd2b58678fbf421c4288a8f9f466c294bf6..820a847fcb25eeb3dc471134f668c5e368a3216b 100755 --- a/indra/newview/linux_tools/refresh_desktop_app_entry.sh +++ b/indra/newview/linux_tools/refresh_desktop_app_entry.sh @@ -16,6 +16,13 @@ else exit 1 fi +# Check for the Release channel. This channel should not have the channel name in its launcher. +if [ "$channel" = "Alchemy Release" ]; then + launcher_name="Alchemy" +else + launcher_name=$channel +fi + install_desktop_entry() { installation_prefix="${1}" @@ -23,7 +30,7 @@ install_desktop_entry() desktop_entry="\ [Desktop Entry]\n\ -Name=${channel}\n\ +Name=${launcher_name}\n\ Comment=Client for the On-line Virtual World, Second Life\n\ Exec=${installation_prefix}/alchemy\n\ Icon=${installation_prefix}/alchemy_icon.png\n\