From 23a2666c2e402b2425a6abe910c04cebbea25e31 Mon Sep 17 00:00:00 2001 From: Pete Wyckoff Date: Wed, 27 Jun 2012 08:01:01 -0400 Subject: 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 Signed-off-by: Junio C Hamano --- t/lib-git-p4.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 't/lib-git-p4.sh') 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" } -- cgit v1.3-5-g9baa