diff options
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/export_tarball/export_tarball.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/export_tarball/export_tarball.py b/tools/export_tarball/export_tarball.py index 148162b..ec0785c 100755 --- a/tools/export_tarball/export_tarball.py +++ b/tools/export_tarball/export_tarball.py @@ -134,11 +134,17 @@ def main(argv): print 'Cannot find the src directory ' + GetSourceDirectory() return 1 - # This command is from src/DEPS; please keep them in sync. + # These two commands are from src/DEPS; please keep them in sync. 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', + 'src/third_party/WebKit', '-o', + 'src/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]) |