Make build scripts fail if something goes wrong

This commit is contained in:
Luis Ángel San Martín 2019-08-16 13:57:49 +02:00
parent 15ea33c24b
commit 021c1084cb
2 changed files with 2 additions and 0 deletions

View File

@ -1,4 +1,5 @@
#! /bin/bash
set -e
VERSION=${1:-"9.5.0"}

View File

@ -1,4 +1,5 @@
#!/bin/bash
set -e
hash macdeployqt 2>/dev/null || { echo >&2 "macdeployqt command not available. Please add the bin subfolder of your Qt installation to the PATH environment variable."; exit 1; }