From 5c96efe905595bfd9b3cf6bb553ef3c48d086803 Mon Sep 17 00:00:00 2001 From: Donald Stufft <donald.stufft@gmail.com> Date: Sat, 23 Feb 2013 02:10:55 -0500 Subject: [PATCH] Fix the syntax of the bash logic --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index c2bccc22..f0b71436 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,8 +8,8 @@ python: install: - sudo apt-get install python-pip - sudo /usr/bin/pip install git+git://github.com/pyinvoke/invoke.git - - 'if [ -n "${VAR+x}" ]; then: invoke install-nacl --library=$NACL; fi' - - 'if [ -n "${VAR+x}" ]; then: invoke install --dev; fi' + - 'if [ -n "${VAR+x}" ]; then invoke install-nacl --library=$NACL; fi' + - 'if [ -n "${VAR+x}" ]; then invoke install --dev; fi' script: - invoke tests --suite=$SUITE env: -- GitLab