From 210bc6b88a7d0d4cbff81dadbf2180a65efc4587 Mon Sep 17 00:00:00 2001 From: Alain Spineux Date: Tue, 8 Dec 2020 15:38:31 +0100 Subject: [PATCH] regress: fix bad syntax: "124: [: missing ]" --- regress/tests/bconsole-test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regress/tests/bconsole-test b/regress/tests/bconsole-test index d54c28f31..ce186c90f 100755 --- a/regress/tests/bconsole-test +++ b/regress/tests/bconsole-test @@ -121,7 +121,7 @@ if [ $? -ne 0 ]; then fi ldd $bin/bconsole | grep readline > /dev/null -if [ $? = 0 && ! -f $tmp/histfile ]; then +if [ $? -eq 0 -a ! -f $tmp/histfile ]; then print_debug "bconsole history file not found" estat=14 fi -- 2.47.3