diff options
author | 2014-02-27 12:20:53 -0400 | |
---|---|---|
committer | 2014-02-27 12:20:53 -0400 | |
commit | d4db21f79f4d0ac5e66b17186a2d7e12b1690b80 (patch) | |
tree | 8664c6f8a835a134af84d89ab97002afc0f34221 /Build/DistributionUpdate.hs | |
parent | 0c3c494303460dde92d499c6e3a88a008c2c51d9 (diff) |
more distributionupdate fixes
Diffstat (limited to 'Build/DistributionUpdate.hs')
-rw-r--r-- | Build/DistributionUpdate.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Build/DistributionUpdate.hs b/Build/DistributionUpdate.hs index 6965bcb68..a681ec2ed 100644 --- a/Build/DistributionUpdate.hs +++ b/Build/DistributionUpdate.hs @@ -21,13 +21,14 @@ main = do makeinfos :: Annex () makeinfos = do + version <- liftIO getChangelogVersion void $ inRepo $ runBool [ Param "commit" + , Param "-a" , Param "-m" , Param $ "publishing git-annex " ++ version ] basedir <- liftIO getRepoDir - version <- liftIO getChangelogVersion now <- liftIO getCurrentTime liftIO $ putStrLn $ "building info files for version " ++ version ++ " in " ++ basedir fs <- liftIO $ dirContentsRecursiveSkipping (const False) True (basedir </> "git-annex") |