Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(393)

Unified Diff: autoupdate.py

Issue 6542009: devserver: start using payload scripts bundled with devserver (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/dev-util.git@master
Patch Set: Nits Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | buildutil.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: autoupdate.py
diff --git a/autoupdate.py b/autoupdate.py
index 68aaba37ee1b7e50ebe528498c38b218eeac37eb..e560492795f279fa4afd58880e2fab5868a8cdb4 100644
--- a/autoupdate.py
+++ b/autoupdate.py
@@ -243,7 +243,7 @@ class Autoupdate(BuildObject):
_LogMessage('Generating update image %s' % update_path)
update_command = [
- '%s/cros_generate_update_payload' % self.scripts_dir,
+ '%s/cros_generate_update_payload' % self.devserver_dir,
'--image="%s"' % image_path,
'--output="%s"' % update_path,
'--noold_style',
@@ -275,7 +275,7 @@ class Autoupdate(BuildObject):
"""
output_gz = os.path.join(output_dir, STATEFUL_FILE)
subprocess.check_call(
- ['%s/cros_generate_stateful_update_payload' % self.scripts_dir,
+ ['%s/cros_generate_stateful_update_payload' % self.devserver_dir,
'--image=%s' % image_path,
'--output_dir=%s' % output_dir,
])
« no previous file with comments | « no previous file | buildutil.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698