aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtime-of-build.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/time-of-build.sh b/time-of-build.sh
index 825a065..0ac4016 100755
--- a/time-of-build.sh
+++ b/time-of-build.sh
@@ -8,8 +8,9 @@ trap 'rm -rf "$tempfile"' EXIT
osc rbl $projname $pkg openSUSE_Tumbleweed x86_64 >$tempfile
# begtime="Tue Dec 13 23:50:13 UTC 2022"
-begstr="$(sed -E -n -e '/started "build/s/^.*at (.*)\.$/\1/p' $tempfile)"
-endstr="$(sed -E -n -e '/(finished|failed) "build/s/^.*at (.*)\.$/\1/p' $tempfile)"
+# \x22 is " character; https://unix.stackexchange.com/a/230354/184648
+begstr="$(sed -E -n -e '/started \x22build/s/^.*at (.*)\.$/\1/p' $tempfile)"
+endstr="$(sed -E -n -e '/(finished|failed) \x22build/s/^.*at (.*)\.$/\1/p' $tempfile)"
begtime="$(date --date "$begstr" +%s)"
endtime="$(date --date "$endstr" +%s)"
-echo -e "$(( $endtime - $begtime ))\t$pkg"
+printf "%s\t%s\n" $(( endtime - begtime )) $pkg