mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
make: fix green prints
Previous version produces escapped sequnces as text (Debian 12).
This commit is contained in:
parent
f70678f863
commit
8a357059f0
1 changed files with 3 additions and 3 deletions
6
Makefile
6
Makefile
|
|
@ -50,10 +50,10 @@ DOCKER_RELEASE_BUILDER = docker run \
|
|||
-e LOOPBUILDSYS='$(buildsys)' \
|
||||
loop-release-builder
|
||||
|
||||
GREEN := "\\033[0;32m"
|
||||
NC := "\\033[0m"
|
||||
GREEN=\033[0;32m
|
||||
NC=\033[0m
|
||||
define print
|
||||
echo $(GREEN)$1$(NC)
|
||||
@printf '%b%s%b\n' '${GREEN}' $1 '${NC}'
|
||||
endef
|
||||
|
||||
# ============
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue