From 9d187f376b6c448e47c8c7c61167edbc22b6e31a Mon Sep 17 00:00:00 2001 From: Serge Guzik Date: Wed, 13 Feb 2019 13:03:14 +0200 Subject: [PATCH] fix: Typo and unintended command invocation --- warp4j | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/warp4j b/warp4j index 36b239f..5c75dfa 100755 --- a/warp4j +++ b/warp4j @@ -355,9 +355,9 @@ function find_latest_cached() { # requests info about all releases for given platform and java branch function fetch_distro_info() { - local platform=$1 3 platform ID + local platform=$1 # platform ID local branch=$2 # 8/9/10/11... - echo "Fetching $JVM_IMPL-$JAVA_DISTRO_TYPE-$branch-$platform info ..." >&2 # TODO remove + echo "Fetching $JVM_IMPL-$JAVA_DISTRO_TYPE-$branch-$platform info..." >&2 curl -s $(api_url info $platform) if [[ $? != 0 ]]; then echo "Error: Failed to fetch JDK $branch info for $platform" >&2