summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-03-08 16:02:44 +0100
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-03-08 16:02:44 +0100
commit2289c413840b7f12a8f23799bd9c347da16ce8c0 (patch)
tree044bde12c272f8621418deb7d889d9cca82be199
parent19f15b2eaf1a804df3186f851eec8f190bd2f8b9 (diff)
Travis could not parse the yaml
-rw-r--r--.travis.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index f91fd11c..9e59ee99 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -41,9 +41,9 @@ addons:
# When installing through libcgal-dev apt, CMake Error at CGAL Exports.cmake The imported target "CGAL::CGAL Qt5" references the file
install:
- - [[ -d ${CGAL_VERSION} ]] || echo "Download https://github.com/CGAL/cgal/releases/download/releases%2F${CGAL_VERSION}/${CGAL_VERSION}.tar.xz"
- - [[ -d ${CGAL_VERSION} ]] || curl -LO "https://github.com/CGAL/cgal/releases/download/releases%2F${CGAL_VERSION}/${CGAL_VERSION}.tar.xz"
- - [[ -d ${CGAL_VERSION} ]] || tar xf ${CGAL_VERSION}.tar.xz
+ - [[ -d ${CGAL_VERSION} ]] && echo "Download https://github.com/CGAL/cgal/releases/download/releases%2F${CGAL_VERSION}/${CGAL_VERSION}.tar.xz"
+ - [[ -d ${CGAL_VERSION} ]] && curl -LO "https://github.com/CGAL/cgal/releases/download/releases%2F${CGAL_VERSION}/${CGAL_VERSION}.tar.xz"
+ - [[ -d ${CGAL_VERSION} ]] && tar xf ${CGAL_VERSION}.tar.xz
- cd ${CGAL_VERSION}
- cmake -DCMAKE_BUILD_TYPE=Release -DCGAL_HEADER_ONLY=ON .
- make all