Windows build: Exit on simple error

This commit is contained in:
Richard Hansen 2022-05-12 19:38:18 -04:00
parent e54ea583f2
commit f19f3833f3

View file

@ -1,5 +1,7 @@
#!/bin/sh
set -e
pecho() { printf %s\\n "$*"; }
log() { pecho "$@"; }
error() { log "ERROR: $@" >&2; }