Browse Source

Update make.pas

Artem V. Ageev 2 months ago
parent
commit
7f26d05e5f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .github/workflows/make.pas

+ 1 - 1
.github/workflows/make.pas

@@ -27,7 +27,7 @@ type
   procedure OutLog(Knd: TLog; Msg: string);
   begin
     case Knd of
-        error: Writeln(stderr, #27'[31m', Msg, #27'[0m');
+        error: Writeln(stderr, #27'[33m', Msg, #27'[0m');
         info:  Writeln(stderr, #27'[32m', Msg, #27'[0m');
         audit: Writeln(stderr, #27'[33m', Msg, #27'[0m');
     end;