Tags: patch

This patch avoids quoting of filenames when copyup/copydown is called. It fixes run of adt-run against packages like aoeui_1.5~dfsg-1.dsc or postgresql-client_9.1+129_all.deb

--
Jean-Baptiste
IRC: jibel
 runner/adt-run |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/runner/adt-run b/runner/adt-run
index 310c39a..37567c0 100755
--- a/runner/adt-run
+++ b/runner/adt-run
@@ -306,7 +306,7 @@ class AutoFile:
 		cud = ['copyup','copydown'][tbp]
 		src = p.file[not tbp] + p.dir
 		dst = p.path[tbp] + p.dir
-		testbed.command(cud, (src, dst))
+		testbed.command(cud, [None, src, dst])
 		p.file[tbp] = p.path[tbp]
 
 	return p.file[tbp] + p.dir

Reply via email to