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

Unified Diff: cros_mark_as_stable.py

Issue 3034011: Add wrapper script to get list of updates to pass to stablizing script without other changes (Closed) Base URL: ssh://git@chromiumos-git//crosutils.git
Patch Set: Fix CROS_WORKON_COMMIT Created 10 years, 5 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 | « cros_mark_all_as_stable ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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()
« no previous file with comments | « cros_mark_all_as_stable ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698