* [yocto-autobuilder][PATCHv3] PublishLayerTarballs.py: don't change directories for Eclipse builds
@ 2016-07-13 18:34 Bill Randle
2016-07-13 20:50 ` Joshua G Lock
0 siblings, 1 reply; 2+ messages in thread
From: Bill Randle @ 2016-07-13 18:34 UTC (permalink / raw)
To: yocto
When publishing eclipse tarballs, we are already in the correct directory,
so skip the change direction operation (which will generate an error).
Signed-off-by: Bill Randle <william.c.randle@intel.com>
---
V3: fix another Python syntax error (unbelievable!)
.../site-packages/autobuilder/buildsteps/PublishLayerTarballs.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lib/python2.7/site-packages/autobuilder/buildsteps/PublishLayerTarballs.py b/lib/python2.7/site-packages/autobuilder/buildsteps/PublishLayerTarballs.py
index c140725..7c1ce4a 100644
--- a/lib/python2.7/site-packages/autobuilder/buildsteps/PublishLayerTarballs.py
+++ b/lib/python2.7/site-packages/autobuilder/buildsteps/PublishLayerTarballs.py
@@ -38,7 +38,8 @@ class PublishLayerTarballs(ShellCommand):
snapshot = ""
self.basedir=os.path.join(os.path.join(os.path.join(
self.workerdir, buildername), self.workdir))
- if self.layername is not "poky":
+ if self.layername is not "poky" \
+ and "eclipse" not in self.layername:
command = "cd " + self.layername + ";"
else:
command = ""
--
2.5.5
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [yocto-autobuilder][PATCHv3] PublishLayerTarballs.py: don't change directories for Eclipse builds
2016-07-13 18:34 [yocto-autobuilder][PATCHv3] PublishLayerTarballs.py: don't change directories for Eclipse builds Bill Randle
@ 2016-07-13 20:50 ` Joshua G Lock
0 siblings, 0 replies; 2+ messages in thread
From: Joshua G Lock @ 2016-07-13 20:50 UTC (permalink / raw)
To: Bill Randle, yocto
On Wed, 2016-07-13 at 11:34 -0700, Bill Randle wrote:
> When publishing eclipse tarballs, we are already in the correct
> directory,
> so skip the change direction operation (which will generate an
> error).
Merged to master, thanks.
Joshua
>
> Signed-off-by: Bill Randle <william.c.randle@intel.com>
> ---
> V3: fix another Python syntax error (unbelievable!)
>
> .../site-
> packages/autobuilder/buildsteps/PublishLayerTarballs.py | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/lib/python2.7/site-
> packages/autobuilder/buildsteps/PublishLayerTarballs.py
> b/lib/python2.7/site-
> packages/autobuilder/buildsteps/PublishLayerTarballs.py
> index c140725..7c1ce4a 100644
> --- a/lib/python2.7/site-
> packages/autobuilder/buildsteps/PublishLayerTarballs.py
> +++ b/lib/python2.7/site-
> packages/autobuilder/buildsteps/PublishLayerTarballs.py
> @@ -38,7 +38,8 @@ class PublishLayerTarballs(ShellCommand):
> snapshot = ""
> self.basedir=os.path.join(os.path.join(os.path.join(
> self.workerdir, buildername),
> self.workdir))
> - if self.layername is not "poky":
> + if self.layername is not "poky" \
> + and "eclipse" not in self.layername:
> command = "cd " + self.layername + ";"
> else:
> command = ""
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-07-13 20:51 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-13 18:34 [yocto-autobuilder][PATCHv3] PublishLayerTarballs.py: don't change directories for Eclipse builds Bill Randle
2016-07-13 20:50 ` Joshua G Lock
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.