[Debian-l10n-commits] r1178 - in /ddtp-dinstall/trunk: Changelog tests/testsuite.sh

nekral-guest at users.alioth.debian.org nekral-guest at users.alioth.debian.org
Mon Aug 11 20:39:07 UTC 2008


Author: nekral-guest
Date: Mon Aug 11 20:39:07 2008
New Revision: 1178

URL: http://svn.debian.org/wsvn/?sc=1&rev=1178
Log:
	* tests/testsuite.sh: Fixed bug in the removal of the .svn
	directories in prepare_testsuite() when a parent directory
	contains a space.

Modified:
    ddtp-dinstall/trunk/Changelog
    ddtp-dinstall/trunk/tests/testsuite.sh

Modified: ddtp-dinstall/trunk/Changelog
URL: http://svn.debian.org/wsvn/ddtp-dinstall/trunk/Changelog?rev=1178&op=diff
==============================================================================
--- ddtp-dinstall/trunk/Changelog (original)
+++ ddtp-dinstall/trunk/Changelog Mon Aug 11 20:39:07 2008
@@ -1,3 +1,9 @@
+2008-08-11  Nicolas François  <nicolas.francois at centraliens.net>
+
+	* tests/testsuite.sh: Fixed bug in the removal of the .svn
+	directories in prepare_testsuite() when a parent directory
+	contains a space.
+
 2008-08-11  Nicolas François  <nicolas.francois at centraliens.net>
 
 	* tests/testsuite/bad/SHA256SUMS_not_in_parent_dir/SHA256SUMS: Add

Modified: ddtp-dinstall/trunk/tests/testsuite.sh
URL: http://svn.debian.org/wsvn/ddtp-dinstall/trunk/tests/testsuite.sh?rev=1178&op=diff
==============================================================================
--- ddtp-dinstall/trunk/tests/testsuite.sh (original)
+++ ddtp-dinstall/trunk/tests/testsuite.sh Mon Aug 11 20:39:07 2008
@@ -34,7 +34,7 @@
 	pt_tmp=$(mktemp -d testsuite-XXXXXX)
 	cp -aH "$pt_d" "$pt_tmp/test"
 	cp -aH "$pt_dirname.pkgs/$pt_basename" "$pt_tmp/test.pkgs"
-	find "$pt_tmp" -name ".svn" | xargs rm -rf
+	find "$pt_tmp" -name ".svn" -print0 | xargs -0 rm -rf
 
 	echo "$pt_tmp"
 }




More information about the Debian-l10n-commits mailing list