Skip to content

Commit 3d38d0f

Browse files
authored
generate-db.js: ignore pkg_format
1 parent dc530c8 commit 3d38d0f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

generate-db.js

+3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ const repoBuffer = fs.readFileSync(path.join(scriptdir, "repo.json"));
2020
const repoJSON = JSON.parse(repoBuffer);
2121

2222
for (const repo_path in repoJSON) {
23+
if (repo_path === "pkg_format") {
24+
continue;
25+
}
2326
const repo = repoJSON[repo_path];
2427
for (const arch of archs) {
2528
https.get(

0 commit comments

Comments
 (0)