We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a3f521 commit 38d1419Copy full SHA for 38d1419
src/lib/converter/utils/repository.ts
@@ -48,7 +48,7 @@ export class Repository {
48
this.baseUrl = baseUrl;
49
this.anchorPrefix = guessAnchorPrefix(this.baseUrl);
50
51
- let out = git("-C", path, "ls-files");
+ const out = git("-C", path, "ls-files");
52
if (out.status === 0) {
53
out.stdout.split("\n").forEach((file) => {
54
if (file !== "") {
0 commit comments