From 30241e18ba3dac6bcc3e2a1b18e373fa004adc0d Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 22 Apr 2020 18:25:48 +0200 Subject: [PATCH] Fix configure success test one more time Quotes are important. --- build/tools/travis-ci.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/tools/travis-ci.sh b/build/tools/travis-ci.sh index 3401615226..b1e3470c86 100755 --- a/build/tools/travis-ci.sh +++ b/build/tools/travis-ci.sh @@ -55,7 +55,7 @@ case $wxTOOLSET in *) echo 'Configuring...' && echo -en 'travis_fold:start:script.configure\\r' ./configure --disable-optimise --disable-debug_info $wxCONFIGURE_FLAGS || rc=$? - if [ -n $rc ]; then + if [ -n "$rc" ]; then echo '*** Configuring failed, contents of config.log follows: ***' echo '-----------------------------------------------------------' cat config.log