2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-01 08:30:49 +00:00

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

View File

@ -282,7 +282,7 @@ func (env *TravisEnvironment) RunTests() error {
// check that the entries in changelog/ are valid // check that the entries in changelog/ are valid
if err := run("calens"); err != nil { 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 return nil