mirror of
git://git.yoctoproject.org/yocto-autobuilder2.git
synced 2025-07-19 12:49:03 +02:00
builders.py: Don't use Interpolate inside functions
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
e34df24042
commit
5e41093974
|
@ -47,8 +47,7 @@ def get_publish_dest(props):
|
|||
if rc_number:
|
||||
snapshot += "." + rc_number
|
||||
|
||||
rel_name = util.Interpolate("yocto-%(prop:yocto_number)s")
|
||||
rel_name += snapshot
|
||||
rel_name = "yocto-" + props.getProperty("yocto_number", "") + snapshot
|
||||
dest = os.path.join(config.publish_dest, rel_name)
|
||||
else:
|
||||
dest_base = os.path.join(config.publish_dest,
|
||||
|
|
Loading…
Reference in New Issue
Block a user