From f504eb3c633485c8be084bd81afaa38a09a87dcd Mon Sep 17 00:00:00 2001 From: Tristan Ancelet Date: Fri, 1 Dec 2023 12:26:13 -0600 Subject: [PATCH] Added log statement to notify user that the desktop file will be udated if there is a difference with the new desktop file setup after installation/update --- install-discord-linux.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install-discord-linux.sh b/install-discord-linux.sh index b6e2fee..dcac8ce 100755 --- a/install-discord-linux.sh +++ b/install-discord-linux.sh @@ -194,6 +194,7 @@ if [[ ! -f $INSTALLED_DESKTOP_FILE ]]; then else # If there is a change for any reason update it if [[ "$(<$DESKTOP_FILE)" != "$(<$INSTALLED_DESKTOP_FILE)" ]]; then + log "Desktop file for new version of discord has changed. Updating the existing installation" DESKTOP_FILE_NEEDS_UPDATE=1 fi fi