From 56bc3cea5eaf2494b87b960d60758b9baf4b41c8 Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Sat, 25 Oct 2014 16:59:15 -0400 Subject: [PATCH] The `listdir` command requires slave version 2.16 --- master/buildbot/steps/source/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/master/buildbot/steps/source/git.py b/master/buildbot/steps/source/git.py index 195629bf8d6..a07efa972e0 100644 --- a/master/buildbot/steps/source/git.py +++ b/master/buildbot/steps/source/git.py @@ -574,7 +574,7 @@ def applyAlready(res): return d def _sourcedirIsUpdatable(self): - if self.slaveVersionIsOlderThan('listdir', '2.17'): + if self.slaveVersionIsOlderThan('listdir', '2.16'): d = self.pathExists(self.build.path_module.join(self.workdir, '.git')) def checkWithPathExists(exists):