From 6189eaf3a45894ccced45054387803fa5939f07d Mon Sep 17 00:00:00 2001 From: Qasim Sarfraz Date: Tue, 7 Aug 2018 20:26:37 +0000 Subject: [PATCH] Exclude escaping quotes (#21) --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index f522e50..2ddf0d9 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -53,7 +53,7 @@ if [ -n "$NGROK_HEADER" ]; then fi if [ -n "$NGROK_USERNAME" ] && [ -n "$NGROK_PASSWORD" ] && [ -n "$NGROK_AUTH" ]; then - ARGS="$ARGS -auth=\"$NGROK_USERNAME:$NGROK_PASSWORD\" " + ARGS="$ARGS -auth=$NGROK_USERNAME:$NGROK_PASSWORD " elif [ -n "$NGROK_USERNAME" ] || [ -n "$NGROK_PASSWORD" ]; then if [ -z "$NGROK_AUTH" ]; then echo "You must specify a username, password, and Ngrok authentication token to use the custom HTTP authentication."