From 038aaa74d1f15641af3e4d0fbae6ddbbe8b0f418 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 4 Jan 2017 22:47:32 +0100 Subject: [PATCH] Fix syntax error in Travis config from the last commit Add the missing quote. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e7572a7bbd..25d1614219 100644 --- a/.travis.yml +++ b/.travis.yml @@ -51,7 +51,7 @@ script: | popd && echo -en 'travis_fold:end:script.3\\r' && echo 'Building the samples...' && echo -en 'travis_fold:start:script.4\\r' && - (test -n "$wxSKIP_SAMPLES" && make samples || echo "*** Skipping building samples ***) && + (test -n "$wxSKIP_SAMPLES" && make samples || echo "*** Skipping building samples ***") && echo -en 'travis_fold:end:script.4\\r' && echo 'Installing...' && echo -en 'travis_fold:start:script.5\\r' && sudo make install &&