Debug curl checksum issues

This commit is contained in:
2024-10-24 13:32:21 -04:00
parent 4d77b17269
commit c061c18a8e

View File

@@ -49,7 +49,6 @@ printHelp() {
EOF EOF
} }
init() { init() {
debug "${FUNCNAME[0]}" debug "${FUNCNAME[0]}"
@@ -141,7 +140,6 @@ init() {
fi fi
} }
readInput() { readInput() {
debug "${FUNCNAME[0]}" debug "${FUNCNAME[0]}"
@@ -367,7 +365,6 @@ installDependencies() {
} }
getImageBuilder() { getImageBuilder() {
debug "${FUNCNAME[0]}" debug "${FUNCNAME[0]}"
@@ -385,7 +382,6 @@ getImageBuilder() {
execute "$DL_TOOL" "-o" "$IB_ARCHIVE" "$url" execute "$DL_TOOL" "-o" "$IB_ARCHIVE" "$url"
} }
getImageBuilderChecksum() { getImageBuilderChecksum() {
debug "${FUNCNAME[0]}" debug "${FUNCNAME[0]}"
@@ -398,7 +394,7 @@ getImageBuilderChecksum() {
fi fi
echo "Downloading Image Builder checksum using $DL_TOOL" echo "Downloading Image Builder checksum using $DL_TOOL"
execute "wget -O $IB_SHA256_FILE $IB_SHA256_URL" "$DL_TOOL" "-o" "$IB_SHA256_FILE" "$IB_SHA256_URL"
} }