We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71f9f1a commit 9218257Copy full SHA for 9218257
src/commands/project/delete/source.ts
@@ -404,9 +404,7 @@ export class Source extends SfCommand<DeleteSourceJson> {
404
.filter(sourceComponentIsNotInMixedDeployDelete(this.mixedDeployDelete))
405
.flatMap((c) =>
406
// for custom labels, print each custom label to be deleted, not the whole file
407
- isNonDecomposedCustomLabelsOrCustomLabel(c)
408
- ? [`${c.type.name}:${c.fullName}`]
409
- : [c.xml, ...c.walkContent()] ?? []
+ isNonDecomposedCustomLabelsOrCustomLabel(c) ? [`${c.type.name}:${c.fullName}`] : [c.xml, ...c.walkContent()]
410
)
411
.concat(this.mixedDeployDelete.delete.map((fr) => `${fr.fullName} (${fr.filePath})`));
412
0 commit comments