Files
umbrix/linux/packaging/appimage/AppRun
2024-02-23 00:46:12 +03:30

10 lines
146 B
Bash

#!/bin/bash
cd "$(dirname "$0")"
export LD_LIBRARY_PATH=usr/lib
if [ "$1" == "HiddifyService" ];then
exec ./$@
else
exec ./hiddify $@
fi