Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master
http://hackage.haskell.org/trac/ghc/changeset/193ad9fe87a2c2cb988e92fdd83f3ffb0c7bb196 >--------------------------------------------------------------- commit 193ad9fe87a2c2cb988e92fdd83f3ffb0c7bb196 Author: Daniel Fischer <[email protected]> Date: Wed Sep 7 19:56:59 2011 +0200 Added repack command to sync-all >--------------------------------------------------------------- sync-all | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/sync-all b/sync-all index cfe7fbe..fb719e4 100755 --- a/sync-all +++ b/sync-all @@ -401,6 +401,10 @@ sub scmall { scm ($localpath, $scm, "config", @args) unless $scm eq "darcs"; } + elsif ($command =~ /^repack$/) { + scm ($localpath, $scm, "repack", @args) + if $scm eq "git" + } else { die "Unknown command: $command"; } @@ -485,6 +489,7 @@ any extra arguments to git: new pull push + repack reset send status _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
