Skip to content

Commit 172ef05

Browse files
committed
style: fix prettier formatting in git-utils
1 parent 619caa4 commit 172ef05

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/main/git-utils.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -131,11 +131,7 @@ export function isWorktreeDirty(worktreePath: string): boolean {
131131
}
132132
}
133133

134-
export function removeWorktree(
135-
projectPath: string,
136-
worktreePath: string,
137-
force = false
138-
): boolean {
134+
export function removeWorktree(projectPath: string, worktreePath: string, force = false): boolean {
139135
try {
140136
const args = ['worktree', 'remove', worktreePath]
141137
if (force) args.push('--force')

0 commit comments

Comments
 (0)