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

Side by Side Diff: runtime/bin/vmservice/client/build.sh

Issue 299823004: Upgrade Observatory to Polymer 0.10.x (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 #!/bin/sh
2
3 # This script copies the build outputs produced by `pub build` to
4 # the deployed directory.
5
6 if [ ! -d "deployed" ]; then
7 echo "Run this script from the client directory"
8 exit
9 fi
10
11 # Fixup polymer breakage
12 pushd lib/src
13 find . -name "*.html" -exec ../../dotdot.sh {} \;
14 popd
15
16 # Build JS
17 pub build
18
19 # Undo polymer breakage fix
20 pushd lib/src
21 find . -name "*.html" -exec ../../notdotdot.sh {} \;
22 popd
23
24 # Deploy
25 ./deploy.sh
26
OLDNEW
« no previous file with comments | « runtime/bin/vmservice/client/HACKING.txt ('k') | runtime/bin/vmservice/client/deployed/web/index.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698