xbps-src: exit properly if mktemp(1) fails, not from its subshell.

Thanks @huglovefan
This commit is contained in:
Juan RP 2019-06-17 17:38:07 +02:00
parent 8614cca7df
commit 7b7d7c13a1
No known key found for this signature in database
GPG key ID: AF19F6CB482F9368
10 changed files with 12 additions and 12 deletions

View file

@ -5,7 +5,7 @@ run_func() {
: ${funcname:=$func}
logpipe=$(mktemp -u -p ${XBPS_STATEDIR} ${pkgname}_${XBPS_CROSS_BUILD}_XXXXXXXX.logpipe || exit 1)
logpipe=$(mktemp -u -p ${XBPS_STATEDIR} ${pkgname}_${XBPS_CROSS_BUILD}_XXXXXXXX.logpipe) || exit 1
logfile=${XBPS_STATEDIR}/${pkgname}_${XBPS_CROSS_BUILD}_${funcname}.log
msg_normal "${pkgver:-xbps-src}: running ${desc:-${func}} ...\n"