fix: add error printing back

This commit is contained in:
Maas Lalani 2023-11-29 11:00:43 -05:00
parent 01a66511a1
commit 76582446ec
No known key found for this signature in database
GPG key ID: 5A6ED5CBF1A0A000

View file

@ -75,6 +75,7 @@ func main() {
if errors.Is(err, exit.ErrAborted) {
os.Exit(exit.StatusAborted)
}
fmt.Println(err)
os.Exit(1)
}
}