mirror of
https://github.com/openziti/zrok.git
synced 2024-12-22 14:50:55 +01:00
remove the extra escape from email pattern when reserving a share
This commit is contained in:
parent
b22bc9fb75
commit
ecf2fe5bfb
@ -133,7 +133,7 @@ if [[ -n "${ZROK_OAUTH_PROVIDER:-}" ]]; then
|
||||
ZROK_CMD+=" --oauth-provider ${ZROK_OAUTH_PROVIDER}"
|
||||
if [[ -n "${ZROK_OAUTH_EMAILS:-}" ]]; then
|
||||
for EMAIL in ${ZROK_OAUTH_EMAILS}; do
|
||||
ZROK_CMD+=" --oauth-email-address-patterns '${EMAIL}'"
|
||||
ZROK_CMD+=" --oauth-email-address-patterns ${EMAIL}"
|
||||
done
|
||||
fi
|
||||
elif [[ -n "${ZROK_BASIC_AUTH:-}" ]]; then
|
||||
|
Loading…
Reference in New Issue
Block a user