diff options
author | Pete Wyckoff <pw@padd.com> | 2012-06-27 08:01:01 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-06-27 21:06:35 -0700 |
commit | 23a2666c2e402b2425a6abe910c04cebbea25e31 (patch) | |
tree | 5ed1984f2c2f38e370caec809db07205062374e7 /t/lib-git-p4.sh | |
parent | git p4 test: copy source indeterminate (diff) | |
download | tgif-23a2666c2e402b2425a6abe910c04cebbea25e31.tar.xz |
git p4 test: cleanup_git should make a new $git
For convenience, leave one in place at the end of each
test so that it is not necessary to build a new one. This
makes it consistent with $cli.
Signed-off-by: Pete Wyckoff <pw@padd.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/lib-git-p4.sh')
-rw-r--r-- | t/lib-git-p4.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t/lib-git-p4.sh b/t/lib-git-p4.sh index 309db31683..31d75ae043 100644 --- a/t/lib-git-p4.sh +++ b/t/lib-git-p4.sh @@ -99,5 +99,6 @@ kill_p4d() { } cleanup_git() { - rm -rf "$git" + rm -rf "$git" && + mkdir "$git" } |