]> git.xonotic.org Git - xonotic/xonotic.git/commitdiff
ignore errors in git-clean as NFS apparently causes them too
authorRudolf Polzer <divverent@alientrap.org>
Sun, 14 Nov 2010 17:03:11 +0000 (18:03 +0100)
committerRudolf Polzer <divverent@alientrap.org>
Sun, 14 Nov 2010 17:03:11 +0000 (18:03 +0100)
all

diff --git a/all b/all
index d022eb0d31b0801ffdf9c0ba4f07936e1b40769e..cef1b3c16b67658611259027a2257b8de7ed6c87 100755 (executable)
--- 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