diff options
author | Jim Meyering <jim@meyering.net> | 2002-04-19 22:50:36 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2002-04-19 22:50:36 +0000 |
commit | f2bb69ebb0b227c1a8030ebc588460074c877b47 (patch) | |
tree | 087a37a0e4849d47ab06acb46101123627df644b /tests/rm/hash | |
parent | 0129239343f6dd4daa3fae1ebf5be071f6317e86 (diff) | |
download | coreutils-f2bb69ebb0b227c1a8030ebc588460074c877b47.tar.xz |
Use this:
(exit $fail); exit
not this:
exit $fail
Diffstat (limited to 'tests/rm/hash')
-rwxr-xr-x | tests/rm/hash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rm/hash b/tests/rm/hash index 25d92f5a0..505cb9bd2 100755 --- a/tests/rm/hash +++ b/tests/rm/hash @@ -37,4 +37,4 @@ fail=0 rm -r t || fail=1 -exit $fail +(exit $fail); exit |