devroom.io/ci-install-yuicompressor.sh

8 lines
178 B
Bash
Raw Normal View History

2016-07-21 08:45:41 +00:00
set -x
set -e
# Install yuicompressor if not already cached
if [ ! -e $CIRCLE_BUILD_DIR/bin/yuicompressor ]; then
2016-07-21 08:47:16 +00:00
npm install -g --prefix ${CIRCLE_BUILD_DIR} yuicompressor
2016-07-21 08:45:41 +00:00
fi