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.
2 parents e0831f1 + 414302d commit e437d05Copy full SHA for e437d05
1 file changed
src/commands/package/bundle/delete.ts
@@ -53,8 +53,8 @@ export class PackageBundleDeleteCommand extends SfCommand<BundleSaveResult> {
53
54
private display(result: BundleSaveResult): void {
55
this.log();
56
- if (result.success) {
57
- this.logSuccess(messages.getMessage('humanSuccess', [result.id]));
+ if ((result as { success: boolean }).success) {
+ this.logSuccess(messages.getMessage('humanSuccess', [(result as { id: string }).id]));
58
} else {
59
this.error(messages.getMessage('humanError'));
60
}
0 commit comments