exit(0) should be exit(1), according to J.Soref
diff --git a/bin/templates/project/cordova/build b/bin/templates/project/cordova/build
index 43a8394..9b49762 100755
--- a/bin/templates/project/cordova/build
+++ b/bin/templates/project/cordova/build
@@ -24,5 +24,5 @@
 if (process.getuid) {
   console.log('Current uid: ' + process.getuid());
 }
-process.exit(0);
+process.exit(1);