diff options
author | Tim Rice <tim@multitalents.net> | 2013-10-24 21:22:49 +0200 |
---|---|---|
committer | Tim Rice <tim@multitalents.net> | 2013-10-24 21:22:49 +0200 |
commit | bd43e8872325e9bbb3319c89da593614709f317c (patch) | |
tree | 4a4b943a15dcde0c570164a47f742e01e98d159b /regress/sftp-perm.sh | |
parent | - djm@cvs.openbsd.org 2013/10/24 08:19:36 (diff) | |
download | openssh-bd43e8872325e9bbb3319c89da593614709f317c.tar.xz openssh-bd43e8872325e9bbb3319c89da593614709f317c.zip |
- (tim) [regress/sftp-perm.sh] We need a shell that understands "! somecmd"
Diffstat (limited to 'regress/sftp-perm.sh')
-rw-r--r-- | regress/sftp-perm.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/regress/sftp-perm.sh b/regress/sftp-perm.sh index 3448740bc..304ca0ac5 100644 --- a/regress/sftp-perm.sh +++ b/regress/sftp-perm.sh @@ -29,7 +29,7 @@ postcondition() { _title="$1" _check="$2" test -z "$_check" && return - sh -c "$_check" || fail "postcondition check failed: $_title" + ${TEST_SHELL} -c "$_check" || fail "postcondition check failed: $_title" } ro_test() { |