Skip to content

Commit 38d1419

Browse files
committed
Fix lint
1 parent 7a3f521 commit 38d1419

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/converter/utils/repository.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export class Repository {
4848
this.baseUrl = baseUrl;
4949
this.anchorPrefix = guessAnchorPrefix(this.baseUrl);
5050

51-
let out = git("-C", path, "ls-files");
51+
const out = git("-C", path, "ls-files");
5252
if (out.status === 0) {
5353
out.stdout.split("\n").forEach((file) => {
5454
if (file !== "") {

0 commit comments

Comments
 (0)