From 65970d3858d6cd4194356c09891585b85dc4f33d Mon Sep 17 00:00:00 2001 From: Peng Tao Date: Mon, 31 Aug 2020 18:40:25 +0800 Subject: [PATCH] osbuilder: install-yq should not print on success The caller might rely on the output to determine its failure. Signed-off-by: Peng Tao --- ci/install_yq.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/ci/install_yq.sh b/ci/install_yq.sh index 73884e0105..2bc3cf21af 100755 --- a/ci/install_yq.sh +++ b/ci/install_yq.sh @@ -63,7 +63,6 @@ function install_yq() { curl -o "${yq_path}" -LSsf "${yq_url}" [ $? -ne 0 ] && die "Download ${yq_url} failed" chmod +x "${yq_path}" - echo "Installed $(${yq_path} --version)" if ! command -v "${yq_path}" >/dev/null; then die "Cannot not get ${yq_path} executable"