Fix linter (#1647)

This commit is contained in:
Anbraten
2023-03-18 20:35:27 +01:00
committed by GitHub
parent af2ef30205
commit fa5b0fb96e
37 changed files with 180 additions and 280 deletions

View File

@@ -84,9 +84,5 @@ func pipelineCreate(c *cli.Context) error {
return err
}
if err := tmpl.Execute(os.Stdout, pipeline); err != nil {
return err
}
return nil
return tmpl.Execute(os.Stdout, pipeline)
}