Exit status should be nonzero if unnecessary conversions found
dtolnay opened this issue · 0 comments
dtolnay commented
Other tools like errcheck
and go tool vet
exit with a nonzero status if problems are found. This makes it easier to include in a build script.
if ! unconvert $PACKAGES; then
die "There are unnecessary conversions"
fi