make.sh: Fix printing the total build time

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Michael Tremer
2024-08-23 09:19:49 +00:00
parent 2b4d457c2f
commit 787d9428af

View File

@@ -241,9 +241,10 @@ print_status() {
} }
print_build_summary() { print_build_summary() {
local runtime=$(format_runtime $@) local runtime="${1}"
print_line "*** Build finished in ${runtime}" print_line "*** Build Finished"
print_runtime "${runtime}"
print_status DONE print_status DONE
} }