fix typo to allow cloning traces when they are not there yet
authorMathieu Lacage <mathieu.lacage@sophia.inria.fr>
Tue, 09 Sep 2008 12:35:11 -0700
changeset 3668 5e2260309dca
parent 3667 ba90a28f8c59
child 3669 e96e61efb9a5
child 3670 81b9840155de
fix typo to allow cloning traces when they are not there yet
wscript
--- a/wscript	Tue Sep 09 11:34:44 2008 -0700
+++ b/wscript	Tue Sep 09 12:35:11 2008 -0700
@@ -912,7 +912,7 @@
         print "Synchronizing reference traces using Mercurial."
         if not os.path.exists(dir_name):
             print "Cloning " + REGRESSION_TRACES_REPO + dir_name + " from repo."
-            subprocess.Popen(["hg", "clone", REGRESSION_TRACES_REPO, dir_name],
+            subprocess.Popen(["hg", "clone", REGRESSION_TRACES_REPO + dir_name, dir_name],
                              stdout=dev_null(), stderr=dev_null()).wait()
         else:
             _dir = os.getcwd()