3 export GIT_AUTHOR_NAME
=automation
4 export GIT_COMMITTER_NAME
=automation
5 export GIT_AUTHOR_EMAIL
=auto@mati.on
6 export GIT_COMMITTER_EMAIL
=auto@mati.on
9 export XDG_CACHE_HOME
=$cache_dir
11 nix_store
=$(mktemp -d)
12 nix_state
=$(mktemp -d)
13 export NIX_STORE_DIR
=$nix_store
14 export NIX_STATE_DIR
=$nix_state
18 repo_dir
="`mktemp -d`"
23 echo Contents
> test-file
25 git commit
-m 'Commit message'
32 git_repo = file://$repo
39 if [ "$repo_dir" ];then rm -rf "$repo_dir"; fi
40 if [ "$conf" ];then rm "$conf"; fi
41 if [ "$cache_dir" ];then rm -rf "$cache_dir"; fi
42 if [ "$nix_store" ];then rm -rf "$nix_store"; fi
43 if [ "$nix_state" ];then rm -rf "$nix_state"; fi
46 trap test_cleanup EXIT INT TERM