We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba48846 commit b77b286Copy full SHA for b77b286
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