/builders.py

Add the releases subdirectory to the release publishing destination path.

Signed-off-by: Graydon, Tracy <tracy.graydon@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Graydon, Tracy 2018-03-21 13:45:25 -07:00 committed by Richard Purdie
parent 5e41093974
commit 67a636ee44

View File

@ -48,7 +48,7 @@ def get_publish_dest(props):
snapshot += "." + rc_number
rel_name = "yocto-" + props.getProperty("yocto_number", "") + snapshot
dest = os.path.join(config.publish_dest, rel_name)
dest = os.path.join(config.publish_dest, "releases", rel_name)
else:
dest_base = os.path.join(config.publish_dest,
props.getProperty("buildername"),