devroom.io/ci-install-yuicompressor.sh
Ariejan de Vroom 5df35d2eb0
fix typo
2016-07-21 10:47:16 +02:00

8 lines
178 B
Bash
Executable File

set -x
set -e
# Install yuicompressor if not already cached
if [ ! -e $CIRCLE_BUILD_DIR/bin/yuicompressor ]; then
npm install -g --prefix ${CIRCLE_BUILD_DIR} yuicompressor
fi