add tests, 05 is broken
This commit is contained in:
Executable
+12
@@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
# Clean up state file left by test scripts
|
||||
DIR="$(dirname "$0")"
|
||||
STATE_FILE="$DIR/.state"
|
||||
|
||||
if [[ -f "$STATE_FILE" ]]; then
|
||||
echo "Removing $STATE_FILE"
|
||||
rm "$STATE_FILE"
|
||||
echo "Done."
|
||||
else
|
||||
echo "Nothing to clean up."
|
||||
fi
|
||||
Reference in New Issue
Block a user