System.out.println("Can't find the supplied config file, or the default file.");
System.exit(0);
}
else {
String configContent = readFile(configFile);
config = json.fromJson(BundlerConfig.class, configContent);
}
if(config == null){
System.out.println("Something went wrong while loading the config file. Abort.");
System.exit(0);