From 877816b90b3c17582d32c7ed2ac56dd7042088e5 Mon Sep 17 00:00:00 2001 From: Matthias Kilian Date: Sat, 16 Apr 2011 14:58:15 +0200 Subject: [PATCH] Add "./sync-all clean" command --- sync-all | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sync-all b/sync-all index 06c183a..7ccc71d 100755 --- a/sync-all +++ b/sync-all @@ -389,6 +389,10 @@ sub scmall { scm ($localpath, $scm, "grep", @args) unless $scm eq "darcs"; } + elsif ($command =~ /^clean$/) { + scm ($localpath, $scm, "clean", @args) + unless $scm eq "darcs"; + } elsif ($command =~ /^reset$/) { scm ($localpath, $scm, "reset", @args) unless $scm eq "darcs"; @@ -426,6 +430,7 @@ Supported commands: * remote rm * remote set-url [--push] * grep + * clean * reset * config -- 1.7.10.4