historical/m0-applesillicon.git/xnu-qemu-arm64-5.1.0/roms/skiboot/test/run.sh
2024-01-16 11:20:27 -06:00

16 lines
162 B
Bash

#!/bin/bash
t=$(mktemp) || exit 1
trap "rm -f -- '$t'" EXIT
$* 2>&1 > $t
r=$?
if [ $r != 0 ]; then
cat $t
exit $r
fi
rm -f -- "$t"
trap - EXIT
exit 0