From: Rudolf Polzer Date: Sun, 14 Nov 2010 17:03:11 +0000 (+0100) Subject: ignore errors in git-clean as NFS apparently causes them too X-Git-Tag: xonotic-v0.1.0preview~54 X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=commitdiff_plain;h=f9975460d3214a7aa15a64275faa5a1b4a65b984 ignore errors in git-clean as NFS apparently causes them too --- diff --git a/all b/all index d022eb0d..cef1b3c1 100755 --- a/all +++ b/all @@ -1365,10 +1365,10 @@ case "$cmd" in if $rmuntracked; then case "$d" in .) - verbose git clean -df + verbose git clean -df || true ;; *) - verbose git clean -xdf + verbose git clean -xdf || true ;; esac fi