Skip to content

Commit

Permalink
fixed label argument in entrypoint (#162)
Browse files Browse the repository at this point in the history
* fixed label argument in entrypoint

* Removed quotes from RUNNER_GROUP_ARG
  • Loading branch information
reiniertimmer authored Nov 10, 2020
1 parent ece8fd8 commit bc35bdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runner/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ if [ -z "${RUNNER_REPO}" ] && [ -n "${RUNNER_ORG}" ] && [ -n "${RUNNER_GROUP}" ]
fi

cd /runner
./config.sh --unattended --replace --name "${RUNNER_NAME}" --url "${GITHUB_URL}${ATTACH}" --token "${RUNNER_TOKEN}" "${RUNNER_GROUP_ARG}" "${LABEL_ARG}"
./config.sh --unattended --replace --name "${RUNNER_NAME}" --url "${GITHUB_URL}${ATTACH}" --token "${RUNNER_TOKEN}" ${RUNNER_GROUP_ARG} ${LABEL_ARG}

for f in runsvc.sh RunnerService.js; do
diff {bin,patched}/${f} || :
Expand Down

0 comments on commit bc35bdf

Please sign in to comment.