[yocto] [yocto-autobuilder][PATCH 1/2] bin/release_scripts/release.py
Graydon, Tracy
tracy.graydon at intel.com
Tue May 3 20:48:15 PDT 2016
Fixed the path for the publishing of the eclipse plugins. They were
going to the wrong subdirectory under downloads.
Signed-off-by: Graydon, Tracy <tracy.graydon at intel.com>
---
bin/release_scripts/release.py | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/bin/release_scripts/release.py b/bin/release_scripts/release.py
index be67f9d..cae6fe7 100755
--- a/bin/release_scripts/release.py
+++ b/bin/release_scripts/release.py
@@ -351,7 +351,8 @@ if __name__ == '__main__':
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")
# List of the directories we delete from all releases
@@ -442,7 +443,7 @@ if __name__ == '__main__':
print "MILESTONE: %s" %MILESTONE
print
- PLUGIN_DIR = os.path.join(DL_BASE, "eclipse-plugin", REL_ID)
+ PLUGIN_DIR = os.path.join(DL_DIR, "eclipse-plugin", REL_ID)
RELEASE_DIR = os.path.join(AB_BASE, RELEASE)
MACHINES = os.path.join(RELEASE_DIR, "machines")
BSP_DIR = os.path.join(RELEASE_DIR, 'bsptarballs')
--
2.7.0
More information about the yocto
mailing list