install sass if it is not already present
This commit is contained in:
parent
755c23e7e2
commit
e8b2787e04
@ -12,6 +12,15 @@ pip install pipenv
|
|||||||
# Update npm
|
# Update npm
|
||||||
npm install -g 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
|
# Install application dependencies
|
||||||
script/bootstrap
|
script/bootstrap
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user