From: Rudolf Polzer Date: Sun, 7 Nov 2010 18:41:27 +0000 (+0100) Subject: simplify the bash workaround X-Git-Tag: xonotic-v0.1.0preview~71 X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=commitdiff_plain;h=ca76086bfdfc713ecded00f8e4c7fa6d0cdc49a2 simplify the bash workaround --- 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 }