buildConfigOrExit method
Implementation
C buildConfigOrExit(List<String> args) {
try {
return buildConfig(args);
} on ConfigHelpException catch (e) {
print(e.message);
exit(0);
} on ConfigUserException catch (e) {
stderr.writeln(e.message);
exit(1);
}
}