|
@@ -192,7 +192,7 @@ class LocalhostBEController(BuildEnvironmentController):
|
|
|
if commit != "HEAD":
|
|
|
logger.debug("localhostbecontroller: checking out commit %s to %s " % (commit, localdirname))
|
|
|
ref = commit if re.match('^[a-fA-F0-9]+$', commit) else 'origin/%s' % commit
|
|
|
- self._shellcmd('git fetch --all && git reset --hard "%s"' % ref, localdirname,env=git_env)
|
|
|
+ self._shellcmd('git fetch && git reset --hard "%s"' % ref, localdirname,env=git_env)
|
|
|
|
|
|
# take the localdirname as poky dir if we can find the oe-init-build-env
|
|
|
if self.pokydirname is None and os.path.exists(os.path.join(localdirname, "oe-init-build-env")):
|