Skip to content

Commit fde7093

Browse files
committedMar 21, 2024·
fix(cli): git clean check, fix #429
1 parent 89fdb40 commit fde7093

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/cli/run.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export async function run(options: CliRunOptions = {}) {
4949
result = await p.group({
5050
uncommittedConfirmed: () => {
5151
if (argSkipPrompt || isGitClean())
Has a conversation. Original line has a conversation.
52-
return
52+
return Promise.resolve(true)
5353

5454
return p.confirm({
5555
initialValue: false,

0 commit comments

Comments
 (0)
Please sign in to comment.