[yocto] [AUTOBUILDER][PATCH 2/4] yoctogit.py: movecopy doesn't care if it's updateable

Elizabeth Flanagan elizabeth.flanagan at intel.com
Mon Mar 10 15:54:00 PDT 2014


movecopy really shouldn't care if it's updatable or not. It should
have an incremental callback in it to take care of that (it doesn't
though, which is part of the problem!)

Signed-off-by: Elizabeth Flanagan <elizabeth.flanagan at intel.com>
---
 .../buildbot-0.8.8-py2.7.egg/buildbot/steps/source/yoctogit.py          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/steps/source/yoctogit.py b/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/steps/source/yoctogit.py
index 487e286..25e5308 100644
--- a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/steps/source/yoctogit.py
+++ b/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/steps/source/yoctogit.py
@@ -184,7 +184,7 @@ class YoctoGit(Source):
         elif self.method == 'barecopy':
             yield self.barecopy()
             return
-        elif updatable and self.method == 'movecopy':
+        elif self.method == 'movecopy':
             yield self.movecopy()
             return
 
-- 
1.8.1.2




More information about the yocto mailing list