Fix the test if statement
This commit is contained in:
parent
2bc2b17560
commit
e9a27ca6f6
@ -84,7 +84,7 @@ stdenv.mkDerivation rec {
|
||||
./signal-protocol-vala-test
|
||||
TEST2=$?
|
||||
set +x
|
||||
if [ $TEST1 != 0 ] && [ $TEST2 != 0 ]; then
|
||||
if [ $TEST1 != 0 ] || [ $TEST2 != 0 ]; then
|
||||
echo "tests failed"
|
||||
exit 1;
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user