set -e
+cache_dir=$(mktemp -d)
+export XDG_CACHE_HOME=$cache_dir
+
foo_setup() {
repo_dir="`mktemp -d`"
}
-foo_cleanup() {
- rm -rf "$repo_dir" "$conf"
+test_cleanup() {
+ if [ "$repo_dir" ];then rm -rf "$repo_dir"; fi
+ if [ "$conf" ];then rm "$conf"; fi
+ if [ "$cache_dir" ];then rm -rf "$cache_dir"; fi
}
+
+trap test_cleanup EXIT INT TERM