fix build output color on macOS (#2857)
On macOS, `echo` does not support the `\e` extension from GNU coreutils. Replacing with the portable `\x1B` to fix Terminal build output colors.
This commit is contained in:
parent
ea722c6f6e
commit
fa3d7fa086
2
Makefile
2
Makefile
|
@ -28,7 +28,7 @@ BASE_METRICS_PORT := 8008
|
|||
WEB3_URL := "wss://goerli.infura.io/ws/v3/809a18497dd74102b5f37d25aae3c85a"
|
||||
VALIDATORS := 1
|
||||
CPU_LIMIT := 0
|
||||
BUILD_END_MSG := "\\e[92mBuild completed successfully:\\e[39m"
|
||||
BUILD_END_MSG := "\\x1B[92mBuild completed successfully:\\x1B[39m"
|
||||
|
||||
ifeq ($(CPU_LIMIT), 0)
|
||||
CPU_LIMIT_CMD :=
|
||||
|
|
Loading…
Reference in New Issue