From: Michael Tremer Date: Tue, 9 Jul 2024 15:11:19 +0000 (+0000) Subject: make.sh: Use the new package function to download sources X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c1fc33d4199c7385168ecdc22578d62b8937b26a;p=people%2Fms%2Fipfire-2.x.git make.sh: Use the new package function to download sources Signed-off-by: Michael Tremer --- 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}"