From 47ec168779d2f10736328c97586cadfb866dc82f Mon Sep 17 00:00:00 2001 From: Quanah Gibson-Mount Date: Sat, 12 Sep 2020 04:58:12 +0000 Subject: [PATCH] ITS#9209 - Fix previous commit for command invocation --- tests/scripts/test067-tls | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/scripts/test067-tls b/tests/scripts/test067-tls index 2e37e2e2dc..1efb93f07a 100755 --- a/tests/scripts/test067-tls +++ b/tests/scripts/test067-tls @@ -21,9 +21,9 @@ if test $WITH_TLS = no ; then exit 0 fi -openssl=`command -v openssl 2>/dev/null)` -certtool=`command -v certtool 2>/dev/null)` -base64=`command -v base64 2>/dev/null)` +openssl=`command -v openssl 2>/dev/null` +certtool=`command -v certtool 2>/dev/null` +base64=`command -v base64 2>/dev/null` mkdir -p $TESTDIR $DBDIR1 cp -r $DATADIR/tls $TESTDIR -- 2.47.3