From c35660505e4ec0a79a1ca0e5ea88d6e78caa1778 Mon Sep 17 00:00:00 2001 From: Jacob Bachmeyer Date: Thu, 1 Apr 2021 18:20:56 -0500 Subject: Clean up another non-portable shell construct in runtest launcher --- runtest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtest') diff --git a/runtest b/runtest index b2e0a4c..807a6ae 100755 --- a/runtest +++ b/runtest @@ -152,7 +152,7 @@ if [ -z "$runpath" ] ; then exit 1 fi -if ! command -v "$expectbin" > /dev/null ; then +if command -v "$expectbin" > /dev/null ; then :; else echo "ERROR: unable to find expect in the PATH" exit 1 fi -- cgit v1.1