From f83e262e6d10b480df069129c3eddfab0a22c4b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Hajdan=2C=20Jr?= Date: Fri, 24 Mar 2017 10:32:19 +0100 Subject: [PATCH] Adjust paths in bot_update.py after moving recipes to subdir MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: 699120, 704864 Change-Id: Iea62a8382ae2553af3f080f07358de53c278ad7c Reviewed-on: https://chromium-review.googlesource.com/459496 Reviewed-by: Emma Söderberg Commit-Queue: Paweł Hajdan Jr. --- recipes/recipe_modules/bot_update/resources/bot_update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/recipe_modules/bot_update/resources/bot_update.py b/recipes/recipe_modules/bot_update/resources/bot_update.py index 567678428..9dd6f82bf 100755 --- a/recipes/recipe_modules/bot_update/resources/bot_update.py +++ b/recipes/recipe_modules/bot_update/resources/bot_update.py @@ -38,7 +38,7 @@ BUILDER_DIR = path.dirname(CURRENT_DIR) # Relative to this script's filesystem path. THIS_DIR = path.dirname(path.abspath(__file__)) -DEPOT_TOOLS_DIR = path.abspath(path.join(THIS_DIR, '..', '..', '..')) +DEPOT_TOOLS_DIR = path.abspath(path.join(THIS_DIR, '..', '..', '..', '..')) CHROMIUM_GIT_HOST = 'https://chromium.googlesource.com' CHROMIUM_SRC_URL = CHROMIUM_GIT_HOST + '/chromium/src.git'