diff --git a/src/git-command-manager.ts b/src/git-command-manager.ts index 699a963..ae9bb34 100644 --- a/src/git-command-manager.ts +++ b/src/git-command-manager.ts @@ -297,7 +297,10 @@ class GitCommandManager { if (recursive) { args.push('--recursive') } + # this is an ugly way to add the quotes around the command + args.push('"') args.push(command) + args.push('"') const output = await this.execGit(args) return output.stdout