Merge pull request #2166 from kinvolk/alban/scope-url

scope: fix URL
This commit is contained in:
Alfonso Acosta
2017-01-30 15:02:56 +01:00
committed by GitHub

3
scope
View File

@@ -250,7 +250,8 @@ case "$COMMAND" in
launch "$@"
if ! check_probe_only; then
IP_ADDRS=$(docker run --rm --net=host --entrypoint /bin/sh "$SCOPE_IMAGE" -c "$IP_ADDR_CMD")
print_app_endpoints "$IP_ADDRS"
# shellcheck disable=SC2086
print_app_endpoints $IP_ADDRS
fi
;;