You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: github_actions_runner_manager.sh
+20-7Lines changed: 20 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,8 @@ is_running () {
34
34
start () {
35
35
local runner_path="$1"
36
36
local state_path="$2"
37
-
local force=$3
37
+
local command="$3"
38
+
local force=$4
38
39
39
40
# check if the runner path exists
40
41
if! [[ -d"$runner_path" ]]
@@ -50,11 +51,17 @@ start () {
50
51
exit 2
51
52
fi
52
53
53
-
# running as a service, see https://docs.github.com/en/actions/hosting-your-own-runners/managing-self-hosted-runners/configuring-the-self-hosted-runner-application-as-a-service
0 commit comments