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

Unified Diff: tools/observatory_tool.py

Issue 1304953004: Make build incremental (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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 | « runtime/tools/create_snapshot_bin.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/observatory_tool.py
diff --git a/tools/observatory_tool.py b/tools/observatory_tool.py
index fab21834b427320f4bc5bd2a6a7cdc15e981040f..66261438f1cb367603b3f8d0b4d883766836d9c2 100755
--- a/tools/observatory_tool.py
+++ b/tools/observatory_tool.py
@@ -96,6 +96,8 @@ def PubBuild(dart_executable, pub_executable, pkg_root, silent, output_dir):
def Deploy(input_dir, output_dir):
shutil.rmtree(output_dir)
shutil.copytree(input_dir, output_dir, ignore=IGNORE_PATTERNS)
+ index_file = os.path.join(output_dir, 'web', 'index.html')
+ os.utime(index_file, None)
return 0
def RewritePubSpec(input_path, output_path, search, replace):
« no previous file with comments | « runtime/tools/create_snapshot_bin.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698