From 5c6a0c9e1721755fc261f06f1ab88d949a6bd2fa Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Thu, 22 Jul 2010 07:23:26 +0000 Subject: [PATCH] Fixed bug in 'svn status -v' output parser. git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@1856 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- scripts/run-regression-tests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run-regression-tests b/scripts/run-regression-tests index 02aefbda2..5bcbfbf61 100755 --- a/scripts/run-regression-tests +++ b/scripts/run-regression-tests @@ -179,7 +179,7 @@ function test_scst_tree_patches { # Only copy those files which are administered by Subversion. function duplicate_scst_source_tree { if [ -e "$1/AskingQuestions" ]; then - ( cd "$1" && svn status -v | grep -v '^D' | cut -c41- \ + ( cd "$1" && svn status -v | grep -v '^[D?]' | cut -c3- | awk '{print $4}' \ | while read f; do [ ! -d "$f" ] && echo "$f"; done ) \ | tar -C "$1" --files-from=- -c -f - | tar -x -f - else