func/monotests.sh
2024-08-14 20:52:26 -07:00

8 lines
208 B
Bash

#!/bin/bash
# This is used to help identify what actually failed (assuming we can't figure
# it out ourselves or don't want to run something manually)
for x in success fail; do
[ -e "$x" ] && rm "$x"
done