Remove double-negative from appimage wrapper.

This commit is contained in:
Paul Chote
2019-10-02 20:39:09 +01:00
committed by abcdefg30
parent e94f20f7ca
commit 575541ff4e

View File

@@ -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.