Skip to content

Commit

Permalink
travis-docker-build: use proper syntax to install
Browse files Browse the repository at this point in the history
  • Loading branch information
julianoes committed Nov 7, 2017
1 parent 2287e58 commit bc3f32f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions travis-docker-build.sh
Expand Up @@ -3,7 +3,7 @@
set -e

make BUILD_TYPE=Debug run_unit_tests -j4
make install
make default install
make docs
make fix_style
(cd example/takeoff_land && mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Debug .. && make)
Expand All @@ -13,7 +13,7 @@ make clean
git clean -dfx

make BUILD_TYPE=Release run_unit_tests -j4
make install
make default install
make docs
make fix_style
(cd example/takeoff_land && mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release .. && make)
Expand Down

0 comments on commit bc3f32f

Please sign in to comment.