From af5ae6eeb7178f4c758405db201b7d77bca64789 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Mon, 4 Jan 2010 20:05:53 +0000 Subject: [PATCH] Do not try to include files marked for deletion. git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@1427 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 7e349839e..a50550eb7 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 | cut -c41- \ + ( cd "$1" && svn status -v | grep -v '^D' | cut -c41- \ | while read f; do [ ! -d "$f" ] && echo "$f"; done ) \ | tar -C "$1" --files-from=- -c -f - | tar -x -f - else