On 05/24/16, 8:46 AM, "Randle, William C" <[email protected]> wrote:
>On Mon, 2016-05-23 at 19:07 -0700, Graydon, Tracy wrote: >> Fixed the path for the publishing of the eclipse plugins. They were >> going to the wrong subdirectory under downloads. >> >> Signed-off-by: Graydon, Tracy <[email protected]> >> --- >> bin/release_scripts/release.py | 22 +++++++++++----------- >> 1 file changed, 11 insertions(+), 11 deletions(-) >> >> diff --git a/bin/release_scripts/release.py >>b/bin/release_scripts/release.py >> index 51cd607..3d4ce39 100755 >> --- a/bin/release_scripts/release.py >> +++ b/bin/release_scripts/release.py >> @@ -340,18 +340,18 @@ def publish_adt(rel_id, rel_type, opts): >> QEMU_TARGET = os.path.join(ADT_ROOTFS, dirname) >> print "QEMU_SRC: %s" %QEMU_SRC >> sync_it(QEMU_SRC, QEMU_TARGET, "") >> - >> sync_it(IPK_DIR, ADT_IPK, "") >> return >> >> if __name__ == '__main__': >> - >> + >> os.system("clear") >> print >> - >> + >> VHOSTS = "/srv/www/vhosts" >> AB_BASE = os.path.join(VHOSTS, >> "autobuilder.yoctoproject.org/pub/releases") >> - DL_BASE = os.path.join(VHOSTS, >> "downloads.yoctoproject.org/releases/yocto") >> + DL_DIR = os.path.join(VHOSTS, >>"downloads.yoctoproject.org/releases") >> + DL_BASE = os.path.join(DL_DIR, "/releases/yocto") >> ADT_BASE = os.path.join(VHOSTS, "adtrepo.yoctoproject.org") >> >So is the intent is to create a new DL_BASE >directory downloads.yoctoproject.org/releases/releases/yocto or should >that be: > DL_BASE = os.path.join(DL_DIR, "/yocto") > > -Bill > Argh. No, that DL_BASE line shouldn’t be there. It’s cruft. I thought I had deleted it. Thanks for catching. I will resubmit the patch with that fix. -t -- _______________________________________________ yocto mailing list [email protected] https://lists.yoctoproject.org/listinfo/yocto
