diff options
author | Tim Rice <tim@multitalents.net> | 2013-10-24 12:22:49 -0700 |
---|---|---|
committer | Tim Rice <tim@multitalents.net> | 2013-10-24 12:22:49 -0700 |
commit | bd43e8872325e9bbb3319c89da593614709f317c (patch) | |
tree | 4a4b943a15dcde0c570164a47f742e01e98d159b /regress/sftp-perm.sh | |
parent | a90c0338083ee0e4064c4bdf61f497293a699be0 (diff) |
- (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() { | |||
29 | _title="$1" | 29 | _title="$1" |
30 | _check="$2" | 30 | _check="$2" |
31 | test -z "$_check" && return | 31 | test -z "$_check" && return |
32 | sh -c "$_check" || fail "postcondition check failed: $_title" | 32 | ${TEST_SHELL} -c "$_check" || fail "postcondition check failed: $_title" |
33 | } | 33 | } |
34 | 34 | ||
35 | ro_test() { | 35 | ro_test() { |