in tool/colors/generate_files.dart [18:32]
Future<void> main(List<String> args) async {
// Verify that we're running from the project root.
if (path.basename(Directory.current.path) != 'tools_metadata') {
print('Please run this script from the directory root.');
exitWith(1);
}
print('Generating property files:');
generatePropertiesFiles();
print('Generating JSON files:');
generateJsonFiles();
exitWith(0);
}