Browse Source

Exclude escaping quotes (#21)

Qasim Sarfraz 6 years ago
parent
commit
6189eaf3a4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      entrypoint.sh

+ 1 - 1
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."