summaryrefslogtreecommitdiff
path: root/sync-all
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2011-04-15 14:23:02 +0100
committerIan Lynagh <igloo@earth.li>2011-04-15 14:23:02 +0100
commit11b33eaeaef39fcba8ee9258213068ed90362aa7 (patch)
treead32411ddf710f658499dd7ae2f1502fe710fa2e /sync-all
parent272466d88e4311a1afe066755b88fd5cf782b255 (diff)
downloadhaskell-11b33eaeaef39fcba8ee9258213068ed90362aa7.tar.gz
Make sure the main git repo is case-insensitive too
Diffstat (limited to 'sync-all')
-rwxr-xr-xsync-all3
1 files changed, 3 insertions, 0 deletions
diff --git a/sync-all b/sync-all
index a7b579ed99..06c183af25 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;
}