| 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,
|
| ])
|
|
|