Skip to content
This repository has been archived by the owner on Nov 22, 2024. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Bao Zhiyuan committed Nov 13, 2024
1 parent ad3369f commit d2a5b13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/build.mts
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,10 @@ async function collectMetaInfos(): Promise<void> {
const [teams, teamName, name] = file.filename.split('/', 3)
if (teams === 'teams' && name === 'game.wasm') {
if (metaInfos.has(teamName)) {
break
continue
}
if (!fs.existsSync(`teams/${teamName}`)) {
break
continue
}
const prInfo = await getPRInfo(pull_number)
const metaInfo: MetaInfo = {
Expand Down

0 comments on commit d2a5b13

Please sign in to comment.