Skip to content
Snippets Groups Projects

Issue #98: Add verification to env variable

Merged Issue #98: Add verification to env variable
All threads resolved!
Merged Rafael Dias requested to merge issue/98 into develop
All threads resolved!
4 files
+ 4
8
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 1
2
@@ -33,8 +33,7 @@ if(process.env.BLENDB_SCHEMA_FILE){
configPath = process.env.BLENDB_SCHEMA_FILE;
}
else{
console.error("BLENDB_SCHEMA_FILE wasn't informed");
process.exit(1);
throw new Error("BLENDB_SCHEMA_FILE wasn't informed");
}
config = ConfigParser.parse(configPath);
Loading