diff options
author | Joey Hess <joey@kitenet.net> | 2013-12-21 12:37:53 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-12-21 12:37:53 -0400 |
commit | a0879c10371baf76bcc689896163735f5a2d5319 (patch) | |
tree | f1a15ea2454bfccdd1c69d4173f248c92b9d4eb5 /Build | |
parent | a849aff5b30f844f9204afdcb5da76a3b3bf1f50 (diff) |
fix build
Need to recurse into subdirs to follow git-annex links.
Diffstat (limited to 'Build')
-rw-r--r-- | Build/DistributionUpdate.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/DistributionUpdate.hs b/Build/DistributionUpdate.hs index 0afc2211f..0e7fa7304 100644 --- a/Build/DistributionUpdate.hs +++ b/Build/DistributionUpdate.hs @@ -25,7 +25,7 @@ makeinfos = do version <- liftIO getChangelogVersion now <- liftIO getCurrentTime liftIO $ putStrLn $ "building info files for version " ++ version ++ " in " ++ basedir - fs <- liftIO $ dirContentsRecursiveSkipping (== "info") (basedir </> "git-annex") + fs <- liftIO $ dirContentsRecursiveSkipping (== "info") True (basedir </> "git-annex") forM_ fs $ \f -> do v <- lookupFile f case v of |