[pypy-svn] buildbot default: Fix(?) the command line for "hg clone".

arigo commits-noreply at bitbucket.org
Sun Jan 9 13:08:24 CET 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r404:20141eb6edaa
Date: 2011-01-09 13:08 +0100
http://bitbucket.org/pypy/buildbot/changeset/20141eb6edaa/

Log:	Fix(?) the command line for "hg clone".

diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py
--- a/bot2/pypybuildbot/builds.py
+++ b/bot2/pypybuildbot/builds.py
@@ -124,7 +124,7 @@
         command = "if not exist .hg %s"
     else:
         command = "if [ ! -d .hg ]; then %s; fi"
-    command = command % ("hg clone -U " + repourl)
+    command = command % ("hg clone -U " + repourl + " .")
     factory.addStep(ShellCmd(description="hg clone",
                              command = command,
                              workdir = workdir,


More information about the Pypy-commit mailing list