From 5c09ebac548c8401ef0dd1088ef0a3eeb037d05b Mon Sep 17 00:00:00 2001 From: Bryan Boreham Date: Fri, 1 Jan 2021 11:52:02 +0000 Subject: [PATCH] Fix Mac probe launch command Paren in wrong place meant it was running the app and not getting any extra args --- scope | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scope b/scope index a72d1b7d7..42c87cd00 100755 --- a/scope +++ b/scope @@ -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