Skip to content
Snippets Groups Projects
Commit 64c0055c authored by Tom Wilkie's avatar Tom Wilkie
Browse files

Exit with 10 on diff found, 1 for other errors.

parent c155296d
No related branches found
No related tags found
No related merge requests found
......@@ -38,9 +38,9 @@ func main() {
switch err {
case cmd.ErrDiffFound:
os.Exit(1)
os.Exit(10)
default:
os.Exit(2)
os.Exit(1)
}
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment