Skip to content
This repository was archived by the owner on Aug 15, 2023. It is now read-only.

Commit 0c8192e

Browse files
author
Stefano Kowalke
committed
[BUGFIX] Fix the compare operator
Follow-up to #114
1 parent ecb8a6f commit 0c8192e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@ notifications:
3535

3636
before_script:
3737
- >
38-
if [[ "$TRAVIS_PHP_VERSION" == "5.3" || "$TRAVIS_PHP_VERSION" == "5.4" ]]; then
38+
if [[ "$TRAVIS_PHP_VERSION" = "5.3" || "$TRAVIS_PHP_VERSION" = "5.4" ]]; then
3939
echo "extension = apc.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini;
4040
echo "apc.enable_cli=1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini;
4141
echo "apc.slam_defense=0" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini;
4242
pecl install igbinary > /dev/null;
4343
fi
4444
- >
45-
if [[ "$TRAVIS_PHP_VERSION" == "5.5" || "$TRAVIS_PHP_VERSION" == "5.6"]]; then
45+
if [[ "$TRAVIS_PHP_VERSION" = "5.5" || "$TRAVIS_PHP_VERSION" = "5.6"]]; then
4646
echo "extension = memcache.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini;
4747
echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini;
4848
fi
4949
- >
50-
if [[ "$TRAVIS_PHP_VERSION" == "hhv*" ]]; then
50+
if [[ "$TRAVIS_PHP_VERSION" = "hhv*" ]]; then
5151
echo "extension = memcache.so" >> /etc/hhvm/php.ini;
5252
echo "extension = redis.so" >> /etc/hhvm/php.ini;
5353
fi

0 commit comments

Comments
 (0)