🩹(devex) fix Makefile special character support

Under some shells echo doesn't work as expected with the special formatting.

Using printf when creating the variables make it work and should be more robust.
This commit is contained in:
Florent Chehab
2026-02-25 17:44:28 +01:00
parent cd0cec78ba
commit df90ea96e6
+4 -3
View File
@@ -23,9 +23,10 @@
# ==============================================================================
# VARIABLES
BOLD := \033[1m
RESET := \033[0m
GREEN := \033[1;32m
ESC := $(shell printf '\033')
BOLD := $(ESC)[1m
RESET := $(ESC)[0m
GREEN := $(ESC)[1;32m
# -- Database