From cf785180e4f68e589a153b71056a2fe1163fade6 Mon Sep 17 00:00:00 2001 From: k2s Date: Thu, 27 Jul 2023 04:57:35 +0200 Subject: [PATCH] fix: exported inProcess() was not set correctly breaking checkIsSynced (#37) --- src/helper/git.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helper/git.ts b/src/helper/git.ts index 063de61..bbcdfb6 100644 --- a/src/helper/git.ts +++ b/src/helper/git.ts @@ -18,7 +18,7 @@ export const execGitCommand = async (args: string[]) : Promise => { return res } -export const inProgress = () => true +export const inProgress = () => _inProgress export const status = async (showRes = true): Promise => { // git status --porcelain | awk '{print $2}'