File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -15,19 +15,19 @@ Future main(List<String> args) async {
15
15
try {
16
16
exitCode = await run (args);
17
17
} on UsageException catch (e) {
18
- print (yellow .wrap (e.message));
18
+ print (red .wrap (e.message));
19
19
print (' ' );
20
20
print (e.usage);
21
21
exitCode = ExitCode .usage.code;
22
22
} on FileSystemException catch (e) {
23
- print (yellow .wrap ('$_boldApp could not run in the current directory.' ));
23
+ print (red .wrap ('$_boldApp could not run in the current directory.' ));
24
24
print (e.message);
25
25
if (e.path != null ) {
26
26
print (' ${e .path }' );
27
27
}
28
28
exitCode = ExitCode .config.code;
29
29
} on PackageException catch (e) {
30
- print (yellow .wrap ('$_boldApp could not run for this project.' ));
30
+ print (red .wrap ('$_boldApp could not run for this project.' ));
31
31
for (var detail in e.details) {
32
32
print (yellow.wrap (detail.error));
33
33
if (detail.description != null ) {
You can’t perform that action at this time.
0 commit comments