From de8b6b8a2f71bc708e3e00399049926bda33c8d7 Mon Sep 17 00:00:00 2001 From: Hazel Date: Wed, 3 Jan 2024 14:42:53 +0000 Subject: [PATCH] lint: format --- src/git-command-manager.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/git-command-manager.ts b/src/git-command-manager.ts index c9b616b..cc53350 100644 --- a/src/git-command-manager.ts +++ b/src/git-command-manager.ts @@ -471,7 +471,10 @@ class GitCommandManager { } async tryReset(): Promise { - const output = await this.execGit(['reset', '--hard', '--recurse-submodules', 'HEAD'], true) + const output = await this.execGit( + ['reset', '--hard', '--recurse-submodules', 'HEAD'], + true + ) return output.exitCode === 0 }