Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
hspitzley-czi committed Sep 16, 2024
1 parent 6308eb8 commit 6a991e8
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 6a991e8

Please sign in to comment.