Fix Mac probe launch command

Paren in wrong place meant it was running the app and not getting any extra args
This commit is contained in:
Bryan Boreham
2021-01-01 11:52:02 +00:00
parent f17dceab0d
commit 5c09ebac54

2
scope
View File

@@ -282,7 +282,7 @@ case "$COMMAND" in
app_ip=$(docker inspect -f '{{.NetworkSettings.IPAddress}}' "${CONTAINER}")
docker rm -f "$SCOPE_CONTAINER_NAME" >/dev/null 2>&1 || true
# shellcheck disable=SC2091
CONTAINER=$($(launch_command --no-app "$@" "${app_ip}:4040"))
CONTAINER=$($(launch_command) --no-app "$@" "${app_ip}:4040")
print_app_endpoints "localhost"
exit
fi