Skip to content

Commit 9c1acb9

Browse files
committed
fix: init command not exiting after it finishes
1 parent 572019d commit 9c1acb9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
"start:dev": "./bin/dev.js",
124124
"start:vm": "npm run build && npm run pack:macos && npm run start:vm"
125125
},
126-
"version": "0.7.1",
126+
"version": "0.7.2",
127127
"bugs": "https://github.com/kevinwang5658/codify/issues",
128128
"keywords": [
129129
"oclif"

src/orchestrators/init.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ Enjoy!
6363
`)
6464

6565
ctx.processFinished(ProcessName.INIT);
66+
67+
process.exit(0);
6668
},
6769

6870
async promptSaveLocation(reporter: Reporter): Promise<string> {

0 commit comments

Comments
 (0)