forked from sig_core/toolkit
8 lines
208 B
Bash
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
|