Skip to content

Commit 4e2ba4b

Browse files
committed
fix: info.json path
1 parent 1800a76 commit 4e2ba4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ async function run() {
3232
const sha = submoduleMatch[1];
3333
const submodulePath = submoduleMatch[2];
3434

35-
const infoFilePath = path.join(submodulePath, "info.json");
35+
const infoFilePath = path.join(submodulePath, "..", "info.json");
3636

3737
const rawInfo = await fs.promises.readFile(infoFilePath);
3838
const info = JSON.parse(rawInfo.toString());

0 commit comments

Comments
 (0)