Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master
http://hackage.haskell.org/trac/ghc/changeset/aa39056860a47026b253469f56d623dc6a25e196 >--------------------------------------------------------------- commit aa39056860a47026b253469f56d623dc6a25e196 Author: Ian Lynagh <[email protected]> Date: Fri Jul 8 14:48:06 2011 +0100 Fix "./sync-all get" >--------------------------------------------------------------- sync-all | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/sync-all b/sync-all index 519c02a..6c43965 100755 --- a/sync-all +++ b/sync-all @@ -316,7 +316,9 @@ sub scmall { scm (".", $scm, "get", $get_mode, $path, $localpath, @args); } else { - scm (".", $scm, "clone", $path, $localpath, @args, $bare_flag); + my @argsWithBare = @args; + push @argsWithBare, $bare_flag if $bare_flag; + scm (".", $scm, "clone", $path, $localpath, @argsWithBare); scm ($localpath, $scm, "config", "core.ignorecase", "true"); } next; _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
