Skip to content
This repository has been archived by the owner on Feb 3, 2020. It is now read-only.

Commit

Permalink
Better commit message for LTSes
Browse files Browse the repository at this point in the history
  • Loading branch information
snoyberg committed Jul 24, 2015
1 parent 30a5f63 commit 06fe259
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Stackage/CompleteBuild.hs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ import Stackage.ServerBundle
import Stackage.UpdateBuildPlan
import Stackage.Upload
import System.Environment (lookupEnv)
import Filesystem.Path (dropExtension)
import System.IO (BufferMode (LineBuffering), hSetBuffering)
import Control.Monad.Trans.Unlift (askRunBase, MonadBaseUnlift)
import Data.Function (fix)
Expand Down Expand Up @@ -437,7 +438,7 @@ uploadGithub planFile docmapFile target = do
sourceFile docmapFile $$ (sinkFile destFPDocmap :: Sink ByteString (ResourceT IO) ())

git ["add", fpToString destFPPlan, fpToString destFPDocmap]
git ["commit", "-m", "Checking in " ++ fpToString (basename destFPPlan)]
git ["commit", "-m", "Checking in " ++ fpToString (dropExtension destFPPlan)]
git ["push", "origin", "HEAD:master"]

upload
Expand Down

0 comments on commit 06fe259

Please sign in to comment.