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

Side by Side Diff: pkg/polymer/lib/elements/web-animations-js/run-lint.sh

Issue 175443005: [polymer] import all elements (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: updated from bower Created 6 years, 9 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/bash
2
3 # Update git submodules
4 git submodule init
5 git submodule update
6
7 # If already in a VIRTUAL_ENV assume the person knows what they are doing,
8 # otherwise set up a python virtualenv with all the needed requirements.
9 if [ x$VIRTUAL_ENV == x"" ]; then
10 cd tools/python
11 source setup.sh
12 cd ../..
13 fi
14
15 # Comment out the (function() {} ) wrapper
16 sed -e'17s-^-//-' -e'$s-^-//-' web-animations.js > web-animations-4lint.js
17
18 gjslint --summary --nojsdoc --strict web-animations-4lint.js
19 exit $?
OLDNEW
« no previous file with comments | « pkg/polymer/lib/elements/web-animations-js/README.md ('k') | pkg/polymer/lib/elements/web-animations-js/run-tests.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698