We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f5d5cd commit f4b21c1Copy full SHA for f4b21c1
src/main/bash/sdkman-install.sh
@@ -227,14 +227,16 @@ function __sdkman_checksum_zip() {
227
fi
228
229
if [[ -n $cmd ]]; then
230
- __sdkman_echo_debug "Checksumming downloaded artifact ${zip_archive} (${algorithm})"
+ __sdkman_echo_no_colour "Verifying artifact: ${zip_archive} (${algorithm}:${checksum})"
231
232
if ! eval "$cmd"; then
233
rm -f "$zip_archive"
234
echo ""
235
__sdkman_echo_red "Stop! An invalid checksum was detected and the archive removed! Please try re-installing."
236
return 1
237
238
+ else
239
+ __sdkman_echo_no_colour "Not able to perform checksum verification at this time."
240
241
242
done < ${headers_file}
0 commit comments