emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/webpaste b6f8005 216/298: Do not fallback to true if test


From: ELPA Syncer
Subject: [nongnu] elpa/webpaste b6f8005 216/298: Do not fallback to true if test fails
Date: Thu, 9 Dec 2021 19:00:17 -0500 (EST)

branch: elpa/webpaste
commit b6f8005f66aae7d6e12bfea0e56e80ad49ba27db
Author: Elis Hirwing <elis.axelsson@gmail.com>
Commit: Elis Hirwing <elis.axelsson@gmail.com>

    Do not fallback to true if test fails
---
 .travis.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 13bac42..7058048 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -32,5 +32,5 @@ install:
 
 script:
   # Run tests
-  - test -n "$EVM_EMACS"     && make test            || true
-  - test -n "$INTEGRATION"   && make integration     || true
+  - if test -n "$EVM_EMACS";   then make test;        fi
+  - if test -n "$INTEGRATION"; then make integration; fi



reply via email to

[Prev in Thread] Current Thread [Next in Thread]