Chromium Code Reviews| Index: tools/export_tarball/export_tarball.py |
| diff --git a/tools/export_tarball/export_tarball.py b/tools/export_tarball/export_tarball.py |
| index 876b3d89d35e61de66239268a46c96747c7586f1..e135c9a44f628157eff583f4c72a29d83cee8527 100755 |
| --- a/tools/export_tarball/export_tarball.py |
| +++ b/tools/export_tarball/export_tarball.py |
| @@ -146,17 +146,11 @@ def main(argv): |
| print 'Cannot find the src directory ' + GetSourceDirectory() |
| return 1 |
| - # These two commands are from src/DEPS; please keep them in sync. |
| + # This command is from src/DEPS; please keep them in sync. |
|
scottmg
2016/05/17 17:19:27
keep them -> keep it
scottmg
2016/05/17 17:20:40
Actually, 'keep them' is better (I interpreted ref
|
| if subprocess.call(['python', 'build/util/lastchange.py', '-o', |
| 'build/util/LASTCHANGE'], cwd=GetSourceDirectory()) != 0: |
| print 'Could not run build/util/lastchange.py to update LASTCHANGE.' |
| return 1 |
| - if subprocess.call(['python', 'build/util/lastchange.py', '-s', |
| - 'third_party/WebKit', '-o', |
| - 'build/util/LASTCHANGE.blink'], |
| - cwd=GetSourceDirectory()) != 0: |
| - print 'Could not run build/util/lastchange.py to update LASTCHANGE.blink.' |
| - return 1 |
| output_fullname = args[0] + '.tar' |
| output_basename = options.basename or os.path.basename(args[0]) |