install sass if it is not already present

This commit is contained in:
dandds 2018-06-13 09:53:48 -04:00
parent 755c23e7e2
commit e8b2787e04

View File

@ -12,6 +12,15 @@ pip install pipenv
# Update npm
npm install -g npm
if ! type sass > /dev/null; then
if type gem > /dev/null; then
echo 'installing a sass compiler...'
gem install sass
else
echo 'Could not install a sass compiler. Please install a version of sass.'
fi
fi
# Install application dependencies
script/bootstrap