Skip to content

Commit

Permalink
fix: default fileFilters to **/* (#23851)
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Aug 14, 2023
1 parent 947693d commit cb93676
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -46,7 +46,7 @@ export async function postUpgradeCommandsExecutor(
`Checking for post-upgrade tasks`
);
const commands = upgrade.postUpgradeTasks?.commands ?? [];
const fileFilters = upgrade.postUpgradeTasks?.fileFilters ?? [];
const fileFilters = upgrade.postUpgradeTasks?.fileFilters ?? ['**/*'];
if (is.nonEmptyArray(commands)) {
// Persist updated files in file system so any executed commands can see them
for (const file of config.updatedPackageFiles!.concat(updatedArtifacts)) {
Expand Down

0 comments on commit cb93676

Please sign in to comment.