formatting

This commit is contained in:
Peter Evans 2024-07-25 13:30:47 +00:00
parent 744c8ceb5d
commit 8a55f622b6
4 changed files with 62 additions and 40 deletions

View file

@ -173,7 +173,7 @@ export class GitCommandManager {
}
args.push(ref)
const output = await this.exec(args)
return output.stdout.split("\n").filter((filename) => filename != '')
return output.stdout.split('\n').filter(filename => filename != '')
}
async isDirty(untracked: boolean, pathspec?: string[]): Promise<boolean> {