Add missing -m

This commit is contained in:
Michael Snoyman 2014-12-12 15:52:05 +02:00
parent b2f4e6cad3
commit bc5b77bdd5

View File

@ -101,7 +101,7 @@ getSettings (LTS bumpType) = do
return ()
putStrLn "Committing new LTS file to Git"
git ["add", fpToString newfile]
git ["commit", "Added new LTS release: " ++ show new]
git ["commit", "-m", "Added new LTS release: " ++ show new]
putStrLn "Pushing to Git repository"
git ["push"]
}