Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master
http://hackage.haskell.org/trac/ghc/changeset/9586648193284185c6ff1c75abd33071376fd7f6 >--------------------------------------------------------------- commit 9586648193284185c6ff1c75abd33071376fd7f6 Author: Ian Lynagh <[email protected]> Date: Wed Apr 6 11:31:06 2011 +0100 sync-all: Don't give remote repo paths and branches to git pull You can set up remotes and give them as an argument "./sync-all pull someremote" instead. The old way meant that the patches would be pulled, but remotes/origin/master wouldn't be updated. >--------------------------------------------------------------- sync-all | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/sync-all b/sync-all index f7caca5..728c725 100755 --- a/sync-all +++ b/sync-all @@ -307,7 +307,6 @@ sub scmall { } elsif ($command =~ /^(?:pul|pull)$/) { @scm_args = "pull"; - $want_remote_repo = 1; # Q: should we append the -a argument for darcs repos? } elsif ($command =~ /^(?:g|ge|get)$/) { _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
