Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit0 committed Oct 10, 2022
1 parent 7a3f521 commit 38d1419
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/converter/utils/repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export class Repository {
this.baseUrl = baseUrl;
this.anchorPrefix = guessAnchorPrefix(this.baseUrl);

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

0 comments on commit 38d1419

Please sign in to comment.