[cig-commits] r21905 - cs/buildbot/trunk/buildbot/slave

brad at geodynamics.org brad at geodynamics.org
Thu Apr 18 16:48:11 PDT 2013


Author: brad
Date: 2013-04-18 16:48:10 -0700 (Thu, 18 Apr 2013)
New Revision: 21905

Modified:
   cs/buildbot/trunk/buildbot/slave/commands.py
Log:
Update git commands.

Modified: cs/buildbot/trunk/buildbot/slave/commands.py
===================================================================
--- cs/buildbot/trunk/buildbot/slave/commands.py	2013-04-18 23:14:10 UTC (rev 21904)
+++ cs/buildbot/trunk/buildbot/slave/commands.py	2013-04-18 23:48:10 UTC (rev 21905)
@@ -1744,7 +1744,7 @@
 
     def doVCUpdate(self):
         d = os.path.join(self.builder.basedir, self.srcdir)
-        command = ['git pull']
+        command = ['git', 'pull']
         c = ShellCommand(self.builder, command, d,
                          sendRC=False, timeout=self.timeout)
         self.command = c
@@ -1753,7 +1753,7 @@
     def doVCFull(self):
         d = os.path.join(self.builder.basedir, self.srcdir)
         os.mkdir(d)
-        command = ['git clone', self.repourl]
+        command = ['git', 'clone', self.repourl]
         c = ShellCommand(self.builder, command, d,
                          sendRC=False, timeout=self.timeout)
         self.command = c



More information about the CIG-COMMITS mailing list