Docker: stop on errors in 3_buildwheels/build.sh

This commit is contained in:
2017-03-09 11:01:36 +01:00
parent 79b8194b2a
commit 85c2b1bcd6

View File

@@ -1,5 +1,7 @@
#!/usr/bin/env bash
set -e
# macOS does not support readlink -f, so we use greadlink instead
if [ $(uname) == 'Darwin' ]; then
command -v greadlink 2>/dev/null 2>&1 || { echo >&2 "Install greadlink using brew."; exit 1; }