diff mbox

support/download: quick fix to avoid breaking on custom toolchains

Message ID 1428063598-27902-1-git-send-email-yann.morin.1998@free.fr
State Accepted
Headers show

Commit Message

Yann E. MORIN April 3, 2015, 12:19 p.m. UTC
When the user selects a custom toolchain to be downloaded, there's no
hash for that toolchain, so the download fails, now that hashes are
mandatory.

Fix that by simply exiting as if there was no error, until we have a
better fix...

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 support/download/check-hash | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Thomas Petazzoni April 3, 2015, 12:22 p.m. UTC | #1
Dear Yann E. MORIN,

On Fri,  3 Apr 2015 14:19:58 +0200, Yann E. MORIN wrote:
> When the user selects a custom toolchain to be downloaded, there's no
> hash for that toolchain, so the download fails, now that hashes are
> mandatory.
> 
> Fix that by simply exiting as if there was no error, until we have a
> better fix...
> 
> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
> Cc: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
>  support/download/check-hash | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied.

Thomas
diff mbox

Patch

diff --git a/support/download/check-hash b/support/download/check-hash
index 3483077..67c1780 100755
--- a/support/download/check-hash
+++ b/support/download/check-hash
@@ -96,5 +96,5 @@  done <"${h_file}"
 
 if [ ${nb_checks} -eq 0 ]; then
     printf "ERROR: No hash found for %s\n" "${base}" >&2
-    exit 3
+    exit 0
 fi