]> git.ipfire.org Git - people/ms/ipfire-2.x.git/commitdiff
make.sh: Use the new package function to download sources
authorMichael Tremer <michael.tremer@ipfire.org>
Tue, 9 Jul 2024 15:11:19 +0000 (15:11 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Tue, 9 Jul 2024 15:11:19 +0000 (15:11 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
make.sh

diff --git a/make.sh b/make.sh
index b5f8b3597c5f4897f8c07c55536433ec19791510..85213678a1092de8ffd010497e696cc0d3555f25 100755 (executable)
--- 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}"