blob: 0edd9f6695583730433e69218e0326945f96e286 [file] [log] [blame]
#!/bin/bash
set -e
quietly() {
readonly log="/tmp/quietly-$RANDOM.log"
if ! "$@" >"$log" 2>&1; then
ret=$?
cat "$log"
rm -f "$log"
exit $ret
fi
rm -f "$log"
}
if test -r ".gitlab/ci/post_build_${CMAKE_CONFIGURATION}.sh"; then
source ".gitlab/ci/post_build_${CMAKE_CONFIGURATION}.sh"
fi