Skip to content

Commit

Permalink
fix: typo (#311)
Browse files Browse the repository at this point in the history
  • Loading branch information
hspitzley-czi authored Sep 16, 2024
1 parent 6308eb8 commit e22ae9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/argus-docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:
console.log('Checking file:', file);
return pathFilters.some(filters => {
console.log('- checking filters:', filters);
const matchedFile = filters.every(filter => minimatch(file, filter, , { dot: true }));
const matchedFile = filters.every(filter => minimatch(file, filter, { dot: true }));
console.log(`- matched file ${file} with filters ${filters}?`, matchedFile);
return matchedFile;
});
Expand Down

0 comments on commit e22ae9f

Please sign in to comment.