Merge pull request #24 from ISSOtm/early-error

Have build scripts fail on first failing command
This commit is contained in:
Cas Cremers 2020-11-10 11:54:02 +01:00 committed by GitHub
commit 24233f20d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 0 deletions

View File

@ -1,5 +1,7 @@
#!/bin/sh
set -e
# Default flags
CMFLAGS="-D CMAKE_BUILD_TYPE:STRING=Release"

View File

@ -1,5 +1,7 @@
#!/bin/sh
set -e
# Default flags
CMFLAGS="-D CMAKE_BUILD_TYPE:STRING=Release"

View File

@ -1,5 +1,7 @@
#!/bin/sh
set -e
# Default flags
CMFLAGS="-D CMAKE_BUILD_TYPE:STRING=Release"