From 812f0664d31dd68dbee2413e8d66a67a7b7c24fe Mon Sep 17 00:00:00 2001 From: David Wagner Date: Thu, 22 Sep 2016 11:43:10 +0200 Subject: [PATCH] Travis: fix a 'file exists?' check Signed-off-by: David Wagner --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 25f7e8f96..cdf416723 100644 --- a/.travis.yml +++ b/.travis.yml @@ -121,7 +121,7 @@ script: # Check that all installed files are in a component (no "unspecified # component" archive created) - (cd build && cpack -G TGZ -D CPACK_ARCHIVE_COMPONENT_INSTALL=ON && - [ ! -a '*-Unspecified.tar.gz' ]) + [ ! -e "*-Unspecified.tar.gz" ]) # Keep this last - ( mkdir build_less_features && cd build_less_features && rm -rf $PREFIX/asio-1.10.6 &&