aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--automation/clients/helper/chromeos.py4
-rwxr-xr-xremote_gcc_build.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/automation/clients/helper/chromeos.py b/automation/clients/helper/chromeos.py
index fd3588c9..ddfd59fe 100644
--- a/automation/clients/helper/chromeos.py
+++ b/automation/clients/helper/chromeos.py
@@ -25,7 +25,7 @@ class ScriptsFactory(object):
def Buildbot(self, config_name):
buildbot = os.path.join(self._chromeos_root,
- "chromite/buildbot/cbuildbot.py")
+ "chromite/cbuildbot/cbuildbot.py")
return cmd.Shell(buildbot,
"--buildroot=%s" % self._chromeos_root,
@@ -85,7 +85,7 @@ class CommandsFactory(object):
config_header = "add_config(%r, [%s])" % (config_name,
", ".join(config_list))
config_file = os.path.join(self.CHROMEOS_ROOT,
- "chromite/buildbot/cbuildbot_config.py")
+ "chromite/cbuildbot/cbuildbot_config.py")
quoted_config_header = "%r" % config_header
quoted_config_header = re.sub("'", "\\\"", quoted_config_header)
diff --git a/remote_gcc_build.py b/remote_gcc_build.py
index 4ee1c6e6..8ed324aa 100755
--- a/remote_gcc_build.py
+++ b/remote_gcc_build.py
@@ -315,7 +315,7 @@ def RunRemote(chromeos_root, branch, patches, is_local,
patch = ""
for p in patches:
patch += " -g {0}".format(p)
- cbuildbot_path = os.path.join(chromeos_root, "chromite/buildbot")
+ cbuildbot_path = os.path.join(chromeos_root, "chromite/cbuildbot")
os.chdir(cbuildbot_path)
branch_flag = ""
if branch != "master":