1 Commits

Author SHA1 Message Date
d32ddb1734 Fix gitea action runner target file path in init.sh
Used the wrong variable name in the error message for the gitea action runner target file path.
2025-05-28 22:59:42 +09:00

View File

@@ -38,7 +38,7 @@ fi;
target_file_act_runner="/usr/local/bin/act_runner"; target_file_act_runner="/usr/local/bin/act_runner";
act_runner_exists=1 act_runner_exists=1
if [ ! -f "${target_file_act_runner}" ]; then if [ ! -f "${target_file_act_runner}" ]; then
echo "[!] There is no gitea action runner target file at ${target_file}. Is gitea action runner installed?"; echo "[!] There is no gitea action runner target file at ${target_file_act_runner}. Is gitea action runner installed?";
act_runner_exists=0 act_runner_exists=0
fi; fi;