12 lines
274 B
Bash
12 lines
274 B
Bash
#!/bin/bash
|
|
|
|
# Install closure compiler and linter.
|
|
cd ..
|
|
git clone https://github.com/google/closure-compiler.git
|
|
git clone https://github.com/google/closure-linter.git
|
|
cd closure-compiler
|
|
ant jar
|
|
cd ../closure-linter
|
|
python ./setup.py install --user
|
|
cd ../closure-library
|