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

Unified Diff: runtime/bin/vmservice/observatory/deploy.sh

Issue 584293002: Begin implementing a debugger page in Observatory. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: gen js Created 6 years, 2 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 | « no previous file | runtime/bin/vmservice/observatory/deployed/web/index.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/vmservice/observatory/deploy.sh
diff --git a/runtime/bin/vmservice/observatory/deploy.sh b/runtime/bin/vmservice/observatory/deploy.sh
index 7cf4caf3044b2b966a799d404700b142ee13bf55..4cc93f0d53b07f7472b01086338b56a26aefb696 100755
--- a/runtime/bin/vmservice/observatory/deploy.sh
+++ b/runtime/bin/vmservice/observatory/deploy.sh
@@ -22,4 +22,13 @@ EXCLUDE="$EXCLUDE --exclude main.*"
EXCLUDE="$EXCLUDE --exclude unittest"
EXCLUDE="$EXCLUDE --exclude *_buildLogs*"
+# For some reason...
+#
+# EXCLUDE="$EXCLUDE --exclude *~"
+#
+# ..doesn't work to exclude emacs auto-save files. I'm sure it is
+# something silly, but, in the meantime, solve the problem with a
+# hammer.
+find build -type f | grep ~$ | xargs rm
+
rsync -av --progress build/web/ deployed/web/ $EXCLUDE
« no previous file with comments | « no previous file | runtime/bin/vmservice/observatory/deployed/web/index.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698