diff options
author | Jacob Bachmeyer <jcb@gnu.org> | 2021-04-01 18:20:56 -0500 |
---|---|---|
committer | Jacob Bachmeyer <jcb@gnu.org> | 2021-04-01 18:20:56 -0500 |
commit | c35660505e4ec0a79a1ca0e5ea88d6e78caa1778 (patch) | |
tree | 90c81f41a7a02e1e14235d9cd485348e6aea4a9a /runtest | |
parent | ea9642561c3f410dfb9f1362bc61fdf4e499b7f4 (diff) | |
download | dejagnu-c35660505e4ec0a79a1ca0e5ea88d6e78caa1778.zip dejagnu-c35660505e4ec0a79a1ca0e5ea88d6e78caa1778.tar.gz dejagnu-c35660505e4ec0a79a1ca0e5ea88d6e78caa1778.tar.bz2 |
Clean up another non-portable shell construct in runtest launcher
Diffstat (limited to 'runtest')
-rwxr-xr-x | runtest | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |