diff options
author | Ian Lynagh <igloo@earth.li> | 2011-04-15 14:23:02 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-04-15 14:23:02 +0100 |
commit | 11b33eaeaef39fcba8ee9258213068ed90362aa7 (patch) | |
tree | ad32411ddf710f658499dd7ae2f1502fe710fa2e | |
parent | 272466d88e4311a1afe066755b88fd5cf782b255 (diff) | |
download | haskell-11b33eaeaef39fcba8ee9258213068ed90362aa7.tar.gz |
Make sure the main git repo is case-insensitive too
-rwxr-xr-x | sync-all | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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; } |