From bab555af2359680ab02c995c2e7641138a6172a4 Mon Sep 17 00:00:00 2001 From: Vadim Zhukov Date: Mon, 5 Oct 2020 22:09:33 +0300 Subject: [PATCH] drop --color=always, it doesn't exist outside GNU world --- tests/run-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run-tests.sh b/tests/run-tests.sh index e89d14f..13f5f56 100644 --- a/tests/run-tests.sh +++ b/tests/run-tests.sh @@ -85,7 +85,7 @@ while read -r number test_line; do eval "curl -s $CHTSH_URL/$test_line" > "$TMP" fi - if ! diff -u3 --color=always results/"$number" "$TMP" > "$TMP2"; then + if ! diff -u3 results/"$number" "$TMP" > "$TMP2"; then if [[ $update_tests_results = NO ]]; then if [ "$show_details" = YES ]; then cat "$TMP2"