diff options
Diffstat (limited to 'src/Command')
| -rw-r--r-- | src/Command/Run.hs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/Command/Run.hs b/src/Command/Run.hs index 945a4fd..14341cd 100644 --- a/src/Command/Run.hs +++ b/src/Command/Run.hs @@ -79,7 +79,7 @@ cmdRun (RunCommand changeset) = do              forM_ jobssets $ \jobset -> do                  let commit = jobsetCommit jobset                      shortCid = T.pack $ take 7 $ showCommitId $ commitId commit -                    shortDesc = fitToLength 50 (commitDescription commit) +                shortDesc <- fitToLength 50 <$> getCommitTitle commit                  case jobsetJobsEither jobset of                      Right jobs -> do                          outs <- runJobs mngr commit jobs |