Removed erronous println

Signed-off-by: Morten Linderud <morten@linderud.pw>
This commit is contained in:
Morten Linderud 2021-06-02 21:26:07 +02:00
parent ec7dba937e
commit 03f9ab94d9
No known key found for this signature in database
GPG Key ID: E742683BA08CB2FF
1 changed files with 0 additions and 2 deletions

View File

@ -2,7 +2,6 @@ package main
import (
"errors"
"fmt"
"github.com/foxboron/sbctl"
"github.com/foxboron/sbctl/logging"
@ -23,7 +22,6 @@ var generateBundlesCmd = &cobra.Command{
err := sbctl.BundleIter(func(bundle *sbctl.Bundle) error {
err := sbctl.CreateBundle(*bundle)
if err != nil {
fmt.Println(err)
out_create = false
return nil
}