mirror of
https://github.com/ipdb/website.git
synced 2024-11-12 00:04:48 +01:00
20 lines
456 B
Bash
20 lines
456 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e;
|
||
|
|
||
|
echo "$(tput setaf 136)"
|
||
|
echo " Installing dependencies "
|
||
|
echo "============================================="
|
||
|
echo "$(tput sgr0)" # reset
|
||
|
|
||
|
npm install gulpjs/gulp.git#4.0 -g
|
||
|
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
|