From e2ee50197ce38335b300c376c589890da356444b Mon Sep 17 00:00:00 2001 From: bryan Date: Fri, 13 Jan 2023 18:31:40 -0500 Subject: [PATCH] Fix for axel --- openwrtbuilder | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openwrtbuilder b/openwrtbuilder index c5ad4bf..c5128c6 100755 --- a/openwrtbuilder +++ b/openwrtbuilder @@ -374,10 +374,10 @@ getImageBuilder() { debug "Verifying checksums" if [[ -f $SHA256_FILE ]] && askOk "$SHA256_FILE exists. Re-download?"; then - if ! $dl_tool -so "$SHA256_FILE" "$SHA256_URL"; then + if ! $dl_tool -o "$SHA256_FILE" "$SHA256_URL"; then debug "Failed to download checksum" fi - elif ! $dl_tool -so "$SHA256_FILE" "$SHA256_URL"; then + elif ! $dl_tool -o "$SHA256_FILE" "$SHA256_URL"; then debug "Failed to download checksum" fi