Exit with code 0 instead of 1

This commit is contained in:
rijkvanzanten
2020-07-29 15:10:59 -04:00
parent 08f6d2ea41
commit 4077ce84fa

View File

@@ -65,5 +65,5 @@ async function create(directory) {
stdio: 'inherit'
});
process.exit(1);
process.exit(0);
}