summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Build/DistributionUpdate.hs3
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")