Skip to content

Commit df0aed1

Browse files
committed
feat : add await segment
1 parent 36974e4 commit df0aed1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cli/cli.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const runCLI = async () => {
4040
})
4141
const { github } = { ...githubResponse }
4242
if (github) {
43-
handleGitHubFlow(repoName)
43+
await handleGitHubFlow(repoName)
4444
}
4545
greetings(repoName)
4646
} else if (backend === 'Node.js with Express' && database === 'MongoDB') {
@@ -53,7 +53,7 @@ const runCLI = async () => {
5353
})
5454
const { github } = { ...githubResponse }
5555
if (github) {
56-
handleGitHubFlow(repoName)
56+
await handleGitHubFlow(repoName)
5757
}
5858
greetings(repoName)
5959
} else if (backend === 'Go Lang' && database === 'PostgreSQL') {

0 commit comments

Comments
 (0)