fix schema exit code

This commit is contained in:
2025-08-14 16:07:44 -04:00
parent 406d5fe5cf
commit 214d5d76c3

View File

@@ -61,7 +61,7 @@ func main() {
// Print schema if that's all we have to do // Print schema if that's all we have to do
if flagSchema { if flagSchema {
printSchema() printSchema()
os.Exit(1) os.Exit(0)
} }
// Prepare app // Prepare app