From b741ca3ab5148c5be9ea47a38c083b1b94688c92 Mon Sep 17 00:00:00 2001 From: Alexander Arlt Date: Mon, 21 Feb 2022 20:55:41 -0500 Subject: [PATCH] scripts/common.sh: 'diff --color' not supported by macOS. --- scripts/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/common.sh b/scripts/common.sh index 4a98c0072..7cb96ed02 100644 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -180,7 +180,7 @@ function diff_values shift shift - diff --color=auto --unified=0 <(echo "$value1") <(echo "$value2") "$@" + diff --unified=0 <(echo "$value1") <(echo "$value2") "$@" } function safe_kill