Skip to content

Commit

Permalink
fix(validate): ensure dependencyOn is respected
Browse files Browse the repository at this point in the history
  • Loading branch information
azlam-abdulsalam committed Mar 22, 2024
1 parent b7eacae commit 616c637
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/sfp-cli/src/impl/validate/ValidateImpl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ export default class ValidateImpl implements PostDeployHook, PreDeployHook {
let includeOnlyPackages = [];
if (props.releaseConfigPaths?.length > 0) {
let releaseConfigAggregatedLoader = new ReleaseConfigAggregator(logger);
releaseConfigAggregatedLoader.addReleaseConfigs(props.releaseConfigPaths);
releaseConfigAggregatedLoader.addReleaseConfigs(props.releaseConfigPaths,true);
includeOnlyPackages = releaseConfigAggregatedLoader.getAllPackages();
printIncludeOnlyPackages(includeOnlyPackages);
}
Expand Down

0 comments on commit 616c637

Please sign in to comment.