Files
umbrix/linux/packaging/appimage/AppRun

10 lines
149 B
Plaintext
Raw Normal View History

#!/bin/bash
cd "\$(dirname "\$0")"
export LD_LIBRARY_PATH=usr/lib
2024-02-14 15:51:58 +01:00
if [ "$1" == "HiddifyService" ];then
exec ./$@
else
exec ./$appName $@
fi