Merge pull request #3805 from Ma27/ansi-color-fix

Fix ANSI color constants
This commit is contained in:
Eelco Dolstra
2020-07-13 10:10:22 +02:00
committed by GitHub
+2 -2
View File
@@ -11,7 +11,7 @@ namespace nix {
#define ANSI_GREEN "\e[32;1m"
#define ANSI_YELLOW "\e[33;1m"
#define ANSI_BLUE "\e[34;1m"
#define ANSI_MAGENTA "\e[35m;1m"
#define ANSI_CYAN "\e[36m;1m"
#define ANSI_MAGENTA "\e[35;1m"
#define ANSI_CYAN "\e[36;1m"
}