historical/m0-applesillicon.git/xnu-qemu-arm64-5.1.0/roms/skiboot/test/run.sh

17 lines
162 B
Bash
Raw Normal View History

2024-01-16 17:20:27 +00:00
#!/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