From c1fc33d4199c7385168ecdc22578d62b8937b26a Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Tue, 9 Jul 2024 15:11:19 +0000 Subject: [PATCH] make.sh: Use the new package function to download sources Signed-off-by: Michael Tremer --- make.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/make.sh b/make.sh index b5f8b3597..85213678a 100755 --- a/make.sh +++ b/make.sh @@ -1192,9 +1192,13 @@ download_sources() { [ $? == 1 ] && continue # Download and check the package - if ! run_command "${pkg}" download b2; then + if ! make_pkg "${pkg}" download b2; then + print_status FAIL status=1 + continue fi + + print_status DONE done return "${status}" -- 2.39.5