about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/dino
diff options
context:
space:
mode:
authorBen Kelly <31394095+bezmuth@users.noreply.github.com>2022-08-05 06:48:53 +0100
committerGitHub <noreply@github.com>2022-08-05 06:48:53 +0100
commite9a27ca6f6a0810ac91892e373a5fd671ad35e26 (patch)
tree654c5028ef7d0cbc3398e155a12e2795a50f3494 /pkgs/applications/networking/instant-messengers/dino
parent2bc2b175600b6e153b8185e7677caec6135cb066 (diff)
Fix the test if statement
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/dino')
-rw-r--r--pkgs/applications/networking/instant-messengers/dino/default.nix2
1 files changed, 1 insertions, 1 deletions
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