Windows build: Exit on simple error

pull/5545/head
Richard Hansen 2022-05-12 19:38:18 -04:00
parent e54ea583f2
commit f19f3833f3
1 changed files with 2 additions and 0 deletions

View File

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