1
0
mirror of https://github.com/ascribe/wp-theme synced 2024-12-23 01:30:09 +01:00
wp-theme/_ci/setup.sh

21 lines
483 B
Bash
Raw Normal View History

2016-03-19 01:22:18 +01:00
#!/usr/bin/env bash
set -e;
2016-06-23 13:27:05 +02:00
echo "$(tput setaf 136)"
echo "============================================="
echo " Installing dependencies "
echo "============================================="
echo "$(tput sgr0)" # reset
2016-03-19 01:22:18 +01:00
npm install gulp -g
npm install
2016-06-23 13:27:05 +02:00
echo "$(tput setaf 64)" # green
echo "---------------------------------------------"
echo " ✓ done installing dependencies"
echo "---------------------------------------------"
echo "$(tput sgr0)" # reset
2016-03-19 01:22:18 +01:00
exit;