Removed extra print logging

Signed-off-by: Morten Linderud <morten@linderud.pw>
This commit is contained in:
Morten Linderud 2021-06-12 21:22:09 +02:00
parent 7c23cf35da
commit 070702abda
No known key found for this signature in database
GPG Key ID: E742683BA08CB2FF
1 changed files with 0 additions and 3 deletions

View File

@ -7,8 +7,6 @@ import (
"os"
"os/exec"
"path/filepath"
"github.com/foxboron/sbctl/logging"
)
type Bundle struct {
@ -122,6 +120,5 @@ func GenerateBundle(bundle *Bundle) (bool, error) {
return exitError.ExitCode() == 0, nil
}
}
logging.Print("Wrote EFI bundle %s\n", bundle.Output)
return true, nil
}