fix missing eval

This commit is contained in:
urielch 2019-04-11 13:17:19 +03:00
parent 350d8b128d
commit c8a8825a8b

View File

@ -3,7 +3,7 @@
[ -f /run/secrets/URL ] && URL="$(cat /run/secrets/URL)"
URL="${URL:-https://www.docker.com/}"
if [ ! -z "$EVAL_URL" ]; then URL=$(eval "${URL}"); fi;
if [ ! -z "$EVAL_URL" ]; then URL=$(eval "echo ${URL}"); fi;
# /usr/bin/google-chrome-stable
/usr/bin/chromium-browser ${EXTRA_CHROME_OPTION} \