We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8707f5c + b77b286 commit bf1526aCopy full SHA for bf1526a
1 file changed
engine/engine.ts
@@ -19,7 +19,7 @@ export class Engine {
19
20
console.log("Environment: " + this.environmentName);
21
if (! await this.isEnvironmentComplete()) {
22
- if (this.environment.failOnIncomplete) {
+ if (this.environment.failOnIncomplete && !this.syntaxErrorLogger.activated) {
23
throw "Environment incomplete: " + this.environmentName;
24
} else if(!this.environment.skipMissingFunctions) {
25
console.log("Environment incomplete: " + this.environmentName);
0 commit comments