We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4900179 + db259dd commit 893c93eCopy full SHA for 893c93e
cloudconfig/templates.go
@@ -43,7 +43,7 @@ fi
43
44
function call() {
45
PAYLOAD="$1"
46
- [[ $CALLBACK_URL =~ ^(.*)/status$ ]] || CALLBACK_URL="${CALLBACK_URL}/status"
+ [[ $CALLBACK_URL =~ ^(.*)/status(/)?$ ]] || CALLBACK_URL="${CALLBACK_URL}/status"
47
curl --retry 5 --retry-delay 5 --retry-connrefused --fail -s -X POST -d "${PAYLOAD}" -H 'Accept: application/json' -H "Authorization: Bearer ${BEARER_TOKEN}" "${CALLBACK_URL}" || echo "failed to call home: exit code ($?)"
48
}
49
@@ -386,7 +386,7 @@ $GHRunnerGroup = "{{.GitHubRunnerGroup}}"
386
387
function Install-Runner() {
388
$CallbackURL="{{.CallbackURL}}"
389
- if (!$CallbackURL.EndsWith("/status")) {
+ if (!($CallbackURL -match "^(.*)/status(/)?$")) {
390
$CallbackURL = "$CallbackURL/status"
391
392
0 commit comments