Remove `-x` from the .travis.yml file: move it in build_package.sh

This commit is contained in:
Laurent Rineau 2018-05-23 15:28:46 +02:00
parent 748363cc2e
commit c4fb5f995c
3 changed files with 3 additions and 2 deletions

View File

@ -68,7 +68,7 @@ before_script:
- cd ..
script:
- cd ./.travis
- if [ -n "$CGAL_DEBUG_TRAVIS" ]; then bash -x -e ./build_package.sh $PACKAGE; else bash -e ./build_package.sh $PACKAGE; fi
- bash ./build_package.sh $PACKAGE
notifications:
email:
on_success: change # default: always

View File

@ -1,5 +1,6 @@
#!/bin/bash
set -e
[ -n "$CGAL_DEBUG_TRAVIS" ] && set -x
CXX_FLAGS="-DCGAL_NDEBUG"

View File

@ -25,7 +25,7 @@ before_script:
- cd ..
script:
- cd ./.travis
- if [ -n "$CGAL_DEBUG_TRAVIS" ]; then bash -x -e ./build_package.sh $PACKAGE; else bash -e ./build_package.sh $PACKAGE; fi
- bash ./build_package.sh $PACKAGE
notifications:
email:
on_success: change # default: always