Skip to content

Commit

Permalink
syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ImJohnMDaniel committed Jan 5, 2023
1 parent ca07bca commit db9df69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shared/sfdxproject.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ export class SfdxProjects {
}

public getProjectDependenciesToIgnore(): string[] {
return _.get(this.sfdxProjectJson, 'plugins.toolbox.dependencies.ignore', false) as string[];
return _.get(this.sfdxProjectJson['contents'], 'plugins.toolbox.dependencies.ignore', false) as string[];
}

public getBranchNamesThatContainReleasedVersions(): string[] {
Expand Down

0 comments on commit db9df69

Please sign in to comment.