Skip to content

Commit 893c93e

Browse files
Merge pull request #19 from gabriel-samfira/account-for-trailing-slash
Account for trailing slash
2 parents 4900179 + db259dd commit 893c93e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cloudconfig/templates.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ fi
4343
4444
function call() {
4545
PAYLOAD="$1"
46-
[[ $CALLBACK_URL =~ ^(.*)/status$ ]] || CALLBACK_URL="${CALLBACK_URL}/status"
46+
[[ $CALLBACK_URL =~ ^(.*)/status(/)?$ ]] || CALLBACK_URL="${CALLBACK_URL}/status"
4747
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 ($?)"
4848
}
4949
@@ -386,7 +386,7 @@ $GHRunnerGroup = "{{.GitHubRunnerGroup}}"
386386
387387
function Install-Runner() {
388388
$CallbackURL="{{.CallbackURL}}"
389-
if (!$CallbackURL.EndsWith("/status")) {
389+
if (!($CallbackURL -match "^(.*)/status(/)?$")) {
390390
$CallbackURL = "$CallbackURL/status"
391391
}
392392

0 commit comments

Comments
 (0)