We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6328c57 commit a848050Copy full SHA for a848050
1 file changed
.github/workflows/discord-test.yml
@@ -57,9 +57,10 @@ jobs:
57
mapfile -t out < <(call "$auth" /users/@me)
58
code="${out[0]}"
59
body="$(printf '%s\n' "${out[@]:1}")"
60
- echo "probe $label: $code"
61
- printf '%s\n' "$body" | head -c 300; echo
+ echo "probe $label: $code" >&2
+ { printf '%s\n' "$body" | head -c 300; echo; } >&2
62
if [ "$code" = "200" ]; then
63
+ echo "selected auth: $label" >&2
64
printf '%s' "$auth"
65
return 0
66
fi
0 commit comments