Files
openlayers/vectortile/closure-library/scripts/ci/install_closure_deps.sh
T
2015-09-10 15:23:57 +02:00

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