Skip to content

Commit

Permalink
set -ex on travis/compile.sh
Browse files Browse the repository at this point in the history
-e to fail early: ./configure may fail and further errors from make bury
the original problem in the logs.

-x for easier debugging
  • Loading branch information
smola authored and nikic committed Aug 3, 2020
1 parent 17d64af commit fdf6b0f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions travis/compile.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
set -ex
if [[ "$ENABLE_MAINTAINER_ZTS" == 1 ]]; then
TS="--enable-maintainer-zts";
else
Expand Down

0 comments on commit fdf6b0f

Please sign in to comment.