Skip to content

Commit 99e8d4d

Browse files
committed
setup.sh: Exit on first test failure.
This was the intent of "false" with "set -eu", but did not work.
1 parent eae1dbf commit 99e8d4d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ for python_v in python3 pypy3; do
66
:
77
else
88
echo "runTestLibusb.sh failed with ${python_v} ($("$python_v" --version))"
9-
false
9+
exit 1
1010
fi
1111
done
1212
export I_KNOW_HOW_TO_RELEASE_PYTHON_LIBUSB1=1

0 commit comments

Comments
 (0)