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 daecf6c commit f0ae41fCopy full SHA for f0ae41f
src/commands/project/delete/source.ts
@@ -189,7 +189,9 @@ export class Source extends SfCommand<DeleteSourceJson> {
189
this.log('No results found');
190
if (this.componentSet.forceIgnoredPaths?.size) {
191
// 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');
+ 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.`);
195
}
196
197
0 commit comments