#!/bin/dash
if test -x "$1"; then
	unset LD_LIBRARY_PATH
	exec "$@"
else
	Xdialog --title "Warning" --msgbox "Please enable executable bit to run this AppImage." 0 0 10000
fi
