site/_ci/setup.sh

20 lines
447 B
Bash
Raw Normal View History

2016-03-03 17:21:24 +01:00
#!/usr/bin/env bash
set -e;
echo "$(tput setaf 136)"
echo " Installing dependencies "
echo "============================================="
echo "$(tput sgr0)" # reset
2018-12-03 12:00:59 +01:00
npm install gulp@4.0.0 -g
2016-03-03 17:21:24 +01:00
npm install
# Travis does that automatically after selecting ruby
#bundle install
echo "$(tput setaf 64)" # green
echo "---------------------------------------------"
echo " ✓ done installing dependencies"
echo "$(tput sgr0)" # reset