From 9842e59f04b60d8da87f8ca0603767290cdc45ef Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Mon, 13 Nov 2023 21:15:32 -0500 Subject: [PATCH] graph-diff-color: handle the `GREP_COLOR` deprecation --- bin/graph-diff-color | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/graph-diff-color b/bin/graph-diff-color index 20393c7..775f86a 100755 --- a/bin/graph-diff-color +++ b/bin/graph-diff-color @@ -1,3 +1,3 @@ #!/bin/sh -graph-easy --as boxart | GREP_COLOR='01;31' grep --color=always "\-\S*\|$" | GREP_COLOR='01;32' grep --color=always "\+\S*\|$" +graph-easy --as boxart | GREP_COLOR='01;31' GREP_COLORS='mt=01;31' grep --color=always "\-\S*\|$" | GREP_COLOR='01;32' GREP_COLORS='mt=01;32' grep --color=always "\+\S*\|$"