Skip to content

Commit

Permalink
fix: exported inProcess() was not set correctly breaking checkIsSynced (
Browse files Browse the repository at this point in the history
  • Loading branch information
k2s authored Jul 27, 2023
1 parent 21bf4d6 commit cf78518
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helper/git.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const execGitCommand = async (args: string[]) : Promise<IGitResult> => {
return res
}

export const inProgress = () => true
export const inProgress = () => _inProgress

export const status = async (showRes = true): Promise<IGitResult> => {
// git status --porcelain | awk '{print $2}'
Expand Down

0 comments on commit cf78518

Please sign in to comment.