MAAsConfig/run_all.sh

9 lines
179 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2025-01-14 23:01:26 +08:00
SCRIPT_DIR=$(dirname $(readlink -f "$0"))
MAA_PY="$SCRIPT_DIR/ArknightsMaaConfig/maa.py"
if [ -x "$MAA_PY" ]; then
"$MAA_PY"
else
python3 "$MAA_PY"
fi