Skip to content

Commit

Permalink
#1880: hint to using --isf to skip deployment error
Browse files Browse the repository at this point in the history
  • Loading branch information
JoernBerkefeld committed Nov 21, 2024
1 parent febfff6 commit 004c50c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion @types/lib/metadataTypes/Event.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion lib/metadataTypes/Event.js
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,10 @@ class Event extends MetadataType {
if (Util.OPTIONS.ignoreSfFields) {
warnings.push(` (--ignoreSfFields) ` + msg);
} else {
errors.push(msg);
errors.push(
msg +
` (you can use --ignoreSfFields to skip this error in case you are convinced it is a false positive)`
);
}
} else {
// check if the fields selected in the eventDefinition are actually available
Expand Down

0 comments on commit 004c50c

Please sign in to comment.