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/f-1 | |
parent | 0129239343f6dd4daa3fae1ebf5be071f6317e86 (diff) | |
download | coreutils-f2bb69ebb0b227c1a8030ebc588460074c877b47.tar.xz |
Use this:
(exit $fail); exit
not this:
exit $fail
Diffstat (limited to 'tests/rm/f-1')
-rwxr-xr-x | tests/rm/f-1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rm/f-1 b/tests/rm/f-1 index da79b7229..4e72f575c 100755 --- a/tests/rm/f-1 +++ b/tests/rm/f-1 @@ -23,4 +23,4 @@ fi fail=0 rm -f $tmp/no-such-file || fail=1 -exit $fail +(exit $fail); exit |