Skip to content

Commit f0ae41f

Browse files
committed
fix: update warning to include files
1 parent daecf6c commit f0ae41f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/commands/project/delete/source.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,9 @@ export class Source extends SfCommand<DeleteSourceJson> {
189189
this.log('No results found');
190190
if (this.componentSet.forceIgnoredPaths?.size) {
191191
// we have nothing in the CS, and something forceignored, let the user know they're trying to delete a forceignored file
192-
this.warn('Attempting to delete metadata that conflicts with a .forceignore entry');
192+
const ignoredComponentPaths = Array.from(this.componentSet.forceIgnoredPaths).toString();
193+
this.warn(`Attempting to delete metadata that conflicts with a .forceignore entry: ${ignoredComponentPaths}
194+
Update the .forceignore file and try again.`);
193195
}
194196
}
195197

0 commit comments

Comments
 (0)