From 575541ff4ea209a5ec2f75577a58c8da4b0b0477 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Wed, 2 Oct 2019 20:39:09 +0100 Subject: [PATCH] Remove double-negative from appimage wrapper. --- packaging/linux/openra.appimage.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/linux/openra.appimage.in b/packaging/linux/openra.appimage.in index 29743fea28..429b2d82fb 100755 --- a/packaging/linux/openra.appimage.in +++ b/packaging/linux/openra.appimage.in @@ -5,7 +5,7 @@ cd "${HERE}/../lib/openra" || exit 1 # APPIMAGE is an environment variable set by the runtime # defining the absolute path to the .AppImage file -if [ ! -z "${APPIMAGE}" ]; then +if [ -n "${APPIMAGE}" ]; then LAUNCHER=${APPIMAGE} # appimaged doesn't update the mime or icon caches when registering AppImages.