]> git.xonotic.org Git - xonotic/xonotic.git/blobdiff - all
use wine paths relative to c:
[xonotic/xonotic.git] / all
diff --git a/all b/all
index bda0c655413daf6142961b7b98762cf5a8a08c21..447a390abc26669a48a68725656dfc4a6c213ca7 100755 (executable)
--- a/all
+++ b/all
@@ -857,14 +857,21 @@ case "$cmd" in
                echo "$report" | ssh nexuiz@rm.endoftheinternet.org cat '>>' public_html/xonotic-merge-notes.txt
                ;;
        clean)
+               force=false
+               if [ x"$1" = x"-f" ]; then
+                       force=true
+               fi
                for d in $repos; do
                        enter "$d0/$d" verbose
+                       if $force; then
+                               verbose git checkout-index -fa
+                       fi
                        case "$d" in
                                .)
-                                       git clean -df
+                                       verbose git clean -df
                                        ;;
                                *)
-                                       git clean -xdf
+                                       verbose git clean -xdf
                                        ;;
                        esac
                done