Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master
http://hackage.haskell.org/trac/ghc/changeset/11b33eaeaef39fcba8ee9258213068ed90362aa7 >--------------------------------------------------------------- commit 11b33eaeaef39fcba8ee9258213068ed90362aa7 Author: Ian Lynagh <[email protected]> Date: Fri Apr 15 14:23:02 2011 +0100 Make sure the main git repo is case-insensitive too >--------------------------------------------------------------- sync-all | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/sync-all b/sync-all index a7b579e..06c183a 100755 --- a/sync-all +++ b/sync-all @@ -283,6 +283,9 @@ sub scmall { if (-d $localpath) { warning("$localpath already present; omitting") if $localpath ne "."; + if ($scm eq "git") { + scm ($localpath, $scm, "config", "core.ignorecase", "true"); + } next; } _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
