about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2018-11-20T19·41+0100
committerEelco Dolstra <edolstra@gmail.com>2018-11-20T19·41+0100
commit3f4de91d80da01f5612d839e610b113b8d159065 (patch)
tree19c585ea568c39eca25bc3f506ade99b6090668e /tests
parentebeea068d52abd02adbbfed3a0f7555300d6b048 (diff)
parent02098d2073e2f7c06b6d05c6749ae2b76b7f57d5 (diff)
Merge branch 'better-git-cache' of https://github.com/graham-at-target/nix
Diffstat (limited to 'tests')
-rw-r--r--tests/fetchGit.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/fetchGit.sh b/tests/fetchGit.sh
index 530ac7bb813c..4c46bdf0465b 100644
--- a/tests/fetchGit.sh
+++ b/tests/fetchGit.sh
@@ -9,7 +9,7 @@ clearStore
 
 repo=$TEST_ROOT/git
 
-rm -rf $repo ${repo}-tmp $TEST_HOME/.cache/nix/git
+rm -rf $repo ${repo}-tmp $TEST_HOME/.cache/nix/gitv2
 
 git init $repo
 git -C $repo config user.email "foobar@example.com"
@@ -129,7 +129,7 @@ path5=$(nix eval --raw "(builtins.fetchGit { url = $repo; ref = \"dev\"; }).outP
 
 
 # Nuke the cache
-rm -rf $TEST_HOME/.cache/nix/git
+rm -rf $TEST_HOME/.cache/nix/gitv2
 
 # Try again, but without 'git' on PATH
 NIX=$(command -v nix)