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

Side by Side Diff: third_party/polymer/components/web-animations-js/run-lint.sh

Issue 592603004: Revert "Polymer elements added to third_party/polymer." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
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 web-animations-4lint.js
19 exit $?
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698