summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-03-08 16:19:15 +0100
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-03-08 16:19:15 +0100
commit7d5231c21e5e34dc7a531787179bec2be9b8b683 (patch)
tree4f7e71e25f0ff440a8c8186d76cc0a88522cc209 /.travis.yml
parent780f3c83e554343cf75c0b3d2809322bdf6f7f54 (diff)
Missing then
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index dfaf2097..4a6a951d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -42,8 +42,8 @@ addons:
# When installing through libcgal-dev apt, CMake Error at CGAL Exports.cmake The imported target "CGAL::CGAL Qt5" references the file
install:
- if [ ! -d "${CGAL_VERSION}" ]; then echo "Download https://github.com/CGAL/cgal/releases/download/releases%2F${CGAL_VERSION}/${CGAL_VERSION}.tar.xz"; fi
- - if [ ! -d "${CGAL_VERSION}" ]; curl -LO "https://github.com/CGAL/cgal/releases/download/releases%2F${CGAL_VERSION}/${CGAL_VERSION}.tar.xz"; fi
- - if [ ! -d "${CGAL_VERSION}" ]; tar xf ${CGAL_VERSION}.tar.xz; fi
+ - if [ ! -d "${CGAL_VERSION}" ]; then curl -LO "https://github.com/CGAL/cgal/releases/download/releases%2F${CGAL_VERSION}/${CGAL_VERSION}.tar.xz"; fi
+ - if [ ! -d "${CGAL_VERSION}" ]; then tar xf ${CGAL_VERSION}.tar.xz; fi
- cd ${CGAL_VERSION}
- cmake -DCMAKE_BUILD_TYPE=Release -DCGAL_HEADER_ONLY=ON .
- make all