| Index: cros_mark_as_stable.py
|
| diff --git a/cros_mark_as_stable.py b/cros_mark_as_stable.py
|
| index df87985a9a6f981ce96a52ef253b4117427d9323..8c9ba50d683357e52d87af97103b5e3831984cee 100755
|
| --- a/cros_mark_as_stable.py
|
| +++ b/cros_mark_as_stable.py
|
| @@ -275,9 +275,9 @@ class EBuildStableMarker(object):
|
| elif line.startswith('EAPI'):
|
| # Always add new commit_id after EAPI definition.
|
| redirect_file.write(line)
|
| - redirect_file.write('EGIT_COMMIT="%s"' % commit_id)
|
| - elif not line.startswith('EGIT_COMMIT'):
|
| - # Skip old EGIT_COMMIT definition.
|
| + redirect_file.write('CROS_WORKON_COMMIT="%s"' % commit_id)
|
| + elif not line.startswith('CROS_WORKON_COMMIT'):
|
| + # Skip old CROS_WORKON_COMMIT definition.
|
| redirect_file.write(line)
|
| fileinput.close()
|
|
|
|
|