Remove CI install scripts. Fixes #4

This commit is contained in:
Ariejan de Vroom 2017-03-20 16:38:01 +01:00
parent a446babb74
commit 204d9fd2b2
2 changed files with 0 additions and 20 deletions

View File

@ -1,13 +0,0 @@
HUGO_VERSION=0.19
HUGO_DOWNLOAD=hugo_${HUGO_VERSION}_linux-64bit.tar.gz
HUGO_FILENAME=hugo_${HUGO_VERSION}_linux_amd64
set -x
set -e
# Install Hugo if not already cached or upgrade an old version.
if [ ! -e $CIRCLE_BUILD_DIR/bin/hugo ] || ! [[ `hugo version` =~ v${HUGO_VERSION} ]]; then
wget https://github.com/spf13/hugo/releases/download/v${HUGO_VERSION}/${HUGO_DOWNLOAD}
tar xvzf ${HUGO_DOWNLOAD} -C $CIRCLE_BUILD_DIR/bin/
ln -sf $CIRCLE_BUILD_DIR/bin/$HUGO_FILENAME/$HUGO_FILENAME $CIRCLE_BUILD_DIR/bin/hugo
fi

View File

@ -1,7 +0,0 @@
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