From d32ddb1734e76a7bef8cd440462bf891a6ed6243 Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Wed, 28 May 2025 22:59:42 +0900 Subject: [PATCH] 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. --- init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.sh b/init.sh index 0efdccb..abdd844 100644 --- a/init.sh +++ b/init.sh @@ -38,7 +38,7 @@ fi; target_file_act_runner="/usr/local/bin/act_runner"; act_runner_exists=1 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 fi;