소스 검색

Fix for axel

bryan 2 년 전
부모
커밋
e2ee50197c
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      openwrtbuilder

+ 2 - 2
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