From 941c1e0402442cebf0add6b609a0efc23f520446 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torsten=20B=C3=B6gershausen?= Date: Sat, 8 Dec 2012 22:35:06 +0100 Subject: t9402: Simplify git ls-tree MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use "git ls-tree --name-only" which does not need a sed to filter out the sha Signed-off-by: Torsten Bögershausen Signed-off-by: Junio C Hamano --- t/t9402-git-cvsserver-refs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 't/t9402-git-cvsserver-refs.sh') diff --git a/t/t9402-git-cvsserver-refs.sh b/t/t9402-git-cvsserver-refs.sh index c15abde3b8..7953ffccc6 100755 --- a/t/t9402-git-cvsserver-refs.sh +++ b/t/t9402-git-cvsserver-refs.sh @@ -41,7 +41,7 @@ check_end_full_tree() { sort <"$WORKDIR/check.list" >expected && find "$sandbox" -name CVS -prune -o -type f -print | sed -e "s%$sandbox/%%" | sort >act1 && test_cmp expected act1 && - git ls-tree -r "$2" | sed -e "s/^.*blob [0-9a-fA-F]*[ ]*//" | sort >act2 && + git ls-tree --name-only -r "$2" | sort >act2 && test_cmp expected act2 && rm expected act1 act2 } -- cgit v1.2.1