From 2b795255b1c330c0e086c77e12d25d1fca9e9d2d Mon Sep 17 00:00:00 2001 From: Aryan Ghasemi Date: Fri, 23 Feb 2024 00:46:12 +0330 Subject: [PATCH] AppRun file error fixed. AppImage now is usable --- linux/packaging/appimage/AppRun | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux/packaging/appimage/AppRun b/linux/packaging/appimage/AppRun index 51d29413..66bc43fb 100644 --- a/linux/packaging/appimage/AppRun +++ b/linux/packaging/appimage/AppRun @@ -1,9 +1,9 @@ #!/bin/bash -cd "\$(dirname "\$0")" +cd "$(dirname "$0")" export LD_LIBRARY_PATH=usr/lib if [ "$1" == "HiddifyService" ];then exec ./$@ else - exec ./$appName $@ + exec ./hiddify $@ fi