diff options
author | Ian Lynagh <igloo@earth.li> | 2008-07-12 17:06:38 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-07-12 17:06:38 +0000 |
commit | 19b33121efa3b1821a51351a9455b74ff8229e07 (patch) | |
tree | 3e79abeeeb2832d60155a1c3e24c6fc8cb03b0df /darcs-all | |
parent | 5f3b727c6ed52fb7bdaeb6e51cef7acd04b1a3f3 (diff) | |
download | haskell-19b33121efa3b1821a51351a9455b74ff8229e07.tar.gz |
Remove the hack to avoid darcs-all operating on bootstrapping directories
We no longer create those directories
Diffstat (limited to 'darcs-all')
-rw-r--r-- | darcs-all | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -78,11 +78,7 @@ sub darcsall { chomp $path; if ($path =~ m#/(.*)/#) { my $pkg = $1; - # bootstrapping.* are just copies of other repos; we don't - # update them directly. - if ($pkg !~ /bootstrapping/) { - darcs (@_, "--repodir", "libraries/$pkg"); - } + darcs (@_, "--repodir", "libraries/$pkg"); } else { die "that pattern can't fail!"; |