Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cb14ebc4 authored by Cole Faust's avatar Cole Faust Committed by Gerrit Code Review
Browse files

Merge "Fix printf usage in _wrap_build()" into main

parents 715fb105 a20a7fb5
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -178,11 +178,11 @@ function _wrap_build()
        echo -n "${color_failed}#### failed to build some targets "
    fi
    if [ $hours -gt 0 ] ; then
        printf "(%02g:%02g:%02g (hh:mm:ss))" $hours $mins $secs
        printf "(%02d:%02d:%02d (hh:mm:ss))" $hours $mins $secs
    elif [ $mins -gt 0 ] ; then
        printf "(%02g:%02g (mm:ss))" $mins $secs
        printf "(%02d:%02d (mm:ss))" $mins $secs
    elif [ $secs -gt 0 ] ; then
        printf "(%s seconds)" $secs
        printf "(%d seconds)" $secs
    fi
    echo " ####${color_reset}"
    echo