sbctl: Error looks better then Fatal

Signed-off-by: Morten Linderud <morten@linderud.pw>
This commit is contained in:
Morten Linderud 2021-06-14 00:24:43 +02:00
parent faf366f5e7
commit a43373ce3f
No known key found for this signature in database
GPG Key ID: E742683BA08CB2FF
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ func main() {
} else if errors.Is(err, sbctl.ErrImmutable) {
logging.Println("You need to chattr -i files in efivarfs")
} else if !errors.Is(err, ErrSilent) {
logging.Fatal(err)
logging.Error(err)
}
os.Exit(1)
}