From 12259c6c48ede5e09d4a0d8013be246ca96bbf61 Mon Sep 17 00:00:00 2001 From: hiker Date: Thu, 24 Jul 2014 09:52:29 +1000 Subject: [PATCH] Try to fix travis building debug and release (cd failed before, causing travis to fail). --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index db55853be..a6bd4732b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,7 +29,8 @@ script: - make VERBOSE=1 -j 4 # Then a release build: - - mkdir ../build-release + - cd .. + - mkdir build-release - cd build-release - cmake .. -DCMAKE_BUILD_TYPE=Release -DCHECK_ASSETS=off - make VERBOSE=1 -j 4