From 1c0efce486be6ce182f9c19cdf6977b23edd8c27 Mon Sep 17 00:00:00 2001 From: Jerry Lee Date: Thu, 7 Apr 2022 02:16:31 +0800 Subject: [PATCH] style: modify output message of `prepare_jdks::prepare_jdks` --- lib/prepare_jdks.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/prepare_jdks.sh b/lib/prepare_jdks.sh index ba91d73..7667a95 100644 --- a/lib/prepare_jdks.sh +++ b/lib/prepare_jdks.sh @@ -347,12 +347,11 @@ prepare_jdks::switch_to_jdk() { prepare_jdks::prepare_jdks() { (($# > 0)) || cu::die "${FUNCNAME[0]} requires arguments! But no provided" - cu::blue_echo "prepare jdks(${*})" + cu::blue_echo "prepare jdks: ${*}" local switch_target for switch_target; do prepare_jdks::switch_to_jdk -p "$switch_target" done - echo } ################################################################################