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

Side by Side Diff: extension/build.sh

Issue 11092092: Support compiling templates in the browser. Base URL: git@github.com:dart-lang/dart-web-components.git@master
Patch Set: Created 8 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 unified diff | Download patch
« no previous file with comments | « extension/background.js ('k') | extension/content_script.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/bash
2 # Extensions can't handle symlinks so we have to copy files to make everything
3 # work.
4 # TODO(jacobr): use "pub deploy" in the future instead of performing a copy.
5
6 # Run from the script's directory
7 cd $( dirname "${BASH_SOURCE[0]}" )
8 # Bail on non-zero error code
9 set -e
10
11 # Remove old output, if
12 rm -r output || true
13 mkdir output
14 cp -r ../packages output/
15 cp -r ../bin output/
16 cp -r ../lib output/
17 cp *.html *.js *.json output/
OLDNEW
« no previous file with comments | « extension/background.js ('k') | extension/content_script.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698