mirror of
git://git.yoctoproject.org/yocto-autobuilder2.git
synced 2025-07-19 12:49:03 +02:00
builders: fix clobber step for nightly builder
Copy/paste error resulted in incorrect factory variable name. Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
This commit is contained in:
parent
7fabb26b63
commit
0e0fba1754
|
@ -91,9 +91,9 @@ factory = util.BuildFactory()
|
|||
# NOTE: Assumes that yocto-autobuilder repo has been cloned to home
|
||||
# directory of the user running buildbot.
|
||||
clob = os.path.expanduser("~/yocto-autobuilder-helper/janitor/clobberdir")
|
||||
f.addStep(steps.ShellCommand(
|
||||
command=[clob, util.Interpolate("%(prop:builddir)s/")],
|
||||
name="Clobber build dir"))
|
||||
factory.addStep(steps.ShellCommand(
|
||||
command=[clob, util.Interpolate("%(prop:builddir)s/")],
|
||||
name="Clobber build dir"))
|
||||
# check out the source
|
||||
factory.addStep(steps.Git(
|
||||
repourl='git://git.yoctoproject.org/yocto-autobuilder-helper',
|
||||
|
|
Loading…
Reference in New Issue
Block a user