From ca76086bfdfc713ecded00f8e4c7fa6d0cdc49a2 Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Sun, 7 Nov 2010 19:41:27 +0100 Subject: [PATCH] simplify the bash workaround --- all | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/all b/all index e750d9ae..338967a7 100755 --- a/all +++ b/all @@ -339,16 +339,11 @@ mkzip0() zip -0y "$@" } -timewrapper() -{ - time -p "$@" -} - mirrorspeed() { # first result is to be ignored, but we use it to check status git ls-remote "$1" refs/heads/master >/dev/null 2>&1 || return 1 - timewrapper git ls-remote "$1" refs/heads/master 2>&1 >/dev/null | head -n 1 | cut -d ' ' -f 2 | tr -d . | sed 's,^0*,,' + { time -p git ls-remote "$1" refs/heads/master; } 2>&1 >/dev/null | head -n 1 | cut -d ' ' -f 2 | tr -d . | sed 's,^0*,,' # unit: clock ticks (depends on what "time" returns } -- 2.39.2