formatting

This commit is contained in:
Peter Evans
2024-07-25 13:30:47 +00:00
parent 70815fee7e
commit 5bb83f1307
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> {