From 5b1fa81cba0fe54c5118a642ceacac91159f45da Mon Sep 17 00:00:00 2001
From: diosmosis <benakamoorthi@fastmail.fm>
Date: Thu, 24 Jul 2014 10:25:56 -0700
Subject: [PATCH] Make sure TRAVIS_PHP_VERSION check does not fail and stop
 build.

---
 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 857ddf8766..a1a4c14675 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -79,7 +79,7 @@ script: ./travis.sh
 
 before_install:
   - # do not use the Zend allocator on PHP 5.3 since it will randomly segfault after program execution
-  - '[ "$TRAVIS_PHP_VERSION" == "5.3" ] && export USE_ZEND_ALLOC=0'
+  - '[[ "$TRAVIS_PHP_VERSION" == "5.3" ]] && export USE_ZEND_ALLOC=0 || true'
 
 before_script:
   - mysql --version
-- 
GitLab