Skip to content

Commit

Permalink
sbctl: Error looks better then Fatal
Browse files Browse the repository at this point in the history
Signed-off-by: Morten Linderud <[email protected]>
  • Loading branch information
Foxboron committed Jun 13, 2021
1 parent faf366f commit a43373c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/sbctl/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit a43373c

Please sign in to comment.