Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Unified Diff: common.sh

Issue 3050047: fix print of total elapsed time (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/crosutils.git
Patch Set: third time's a charm Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: common.sh
diff --git a/common.sh b/common.sh
index 32df7d1a84471779e8b4bb496d8eb290d26586d5..036f7972f5fe1c8f12ffcdebfac0f0476f1bb12b 100644
--- a/common.sh
+++ b/common.sh
@@ -454,5 +454,5 @@ print_time_elapsed() {
elapsed_seconds="$(( $end_time - $start_time ))"
minutes="$(( $elapsed_seconds / 60 ))"
seconds="$(( $elapsed_seconds % 60 ))"
- echo "Elapsed time: ${minutes}:${seconds}"
+ echo "Elapsed time: ${minutes}m${seconds}s"
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698