Skip to content

Commit

Permalink
bug(bot): osDistroPathPrefixHints misreferenced
Browse files Browse the repository at this point in the history
  • Loading branch information
cartermckinnon committed Jul 11, 2024
1 parent dcbde24 commit 53d581c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/bot/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ class CICommand {
});
const osDistros = [];
for (const file of files.data) {
for (const prefix of osDistroPathPrefixHints) {
for (const prefix of this.osDistroPathPrefixHints) {
if (file.filename.startsWith(prefix)) {
const osDistro = this.osDistroPathPrefixHints[prefix];
osDistros.push(osDistro);
Expand Down

0 comments on commit 53d581c

Please sign in to comment.