From e9a27ca6f6a0810ac91892e373a5fd671ad35e26 Mon Sep 17 00:00:00 2001 From: Ben Kelly <31394095+bezmuth@users.noreply.github.com> Date: Fri, 5 Aug 2022 06:48:53 +0100 Subject: Fix the test if statement --- pkgs/applications/networking/instant-messengers/dino/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkgs') diff --git a/pkgs/applications/networking/instant-messengers/dino/default.nix b/pkgs/applications/networking/instant-messengers/dino/default.nix index 6db81e442976f..1e8f23e189def 100644 --- a/pkgs/applications/networking/instant-messengers/dino/default.nix +++ b/pkgs/applications/networking/instant-messengers/dino/default.nix @@ -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 -- cgit 1.4.1