1
0
Fork 0
mirror of https://git.tukaani.org/xz.git synced 2024-04-04 12:36:23 +02:00

Avoid using ! in test_files.sh, because that doesn't work

with some ancient /bin/sh versions.
This commit is contained in:
Lasse Collin 2008-01-08 12:29:58 +02:00
parent e2417b2b91
commit b4943ccf73

View file

@ -18,7 +18,9 @@
for I in "$srcdir"/files/good-*.lzma
do
if ! ../src/lzmadec/lzmadec "$I" > /dev/null 2> /dev/null ; then
if ../src/lzmadec/lzmadec "$I" > /dev/null 2> /dev/null ; then
:
else
echo "Good file failed: $I"
(exit 1)
exit 1