From 95a490e27d3938adb2ced58495c88cbcc24bebac Mon Sep 17 00:00:00 2001 From: Pedro Date: Tue, 31 Oct 2023 20:11:22 +0100 Subject: [PATCH] Silence the unzip output --- bin/download | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/download b/bin/download index ef1d1ee..e310178 100755 --- a/bin/download +++ b/bin/download @@ -18,7 +18,7 @@ download_release "$ASDF_INSTALL_VERSION" "$release_file" # Extract contents of tar.gz file into the download directory # tar -xzf "$release_file" -C "$ASDF_DOWNLOAD_PATH" --strip-components=1 || fail "Could not extract $release_file" -unzip -o "$release_file" -d "$ASDF_DOWNLOAD_PATH" || fail "Could not extract $release_file" +unzip -o "$release_file" -d "$ASDF_DOWNLOAD_PATH" > /dev/null || fail "Could not extract $release_file" # Remove the tar.gz file since we don't need to keep it rm "$release_file"