Skip to content

Commit

Permalink
attempt to fix weird ts error on GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
benken committed Dec 5, 2024
1 parent a013d0b commit 516ca32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/utils/checkGit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const getAllChangedFiles = (verboseLogs?: boolean): ChangedFilesDetails[]
const matches = /^(A|C|D|M|R|T|U|X|B)\s+(.*)$/.exec(line);
if (!matches) return null;
return { type: matches[1] as GitChangeType, path: matches[2] };
}).filter((change) => change !== null);
}).filter((change) => change != null);
};

/**
Expand Down

0 comments on commit 516ca32

Please sign in to comment.