CI: Return error when calens fails

This commit is contained in:
Alexander Neumann 2018-03-21 20:53:01 +01:00
parent 5d09fca6a2
commit f31bbcf1a9
1 changed files with 1 additions and 1 deletions

View File

@ -282,7 +282,7 @@ func (env *TravisEnvironment) RunTests() error {
// check that the entries in changelog/ are valid
if err := run("calens"); err != nil {
fmt.Fprintf(os.Stderr, "calens failed, files in changelog/ are not valid\n")
return errors.New("calens failed, files in changelog/ are not valid")
}
return nil