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

21 lines
483 B
Bash
Executable File

#!/usr/bin/env bash
set -e;
echo "$(tput setaf 136)"
echo "============================================="
echo " Installing dependencies "
echo "============================================="
echo "$(tput sgr0)" # reset
npm install gulp -g
npm install
echo "$(tput setaf 64)" # green
echo "---------------------------------------------"
echo " ✓ done installing dependencies"
echo "---------------------------------------------"
echo "$(tput sgr0)" # reset
exit;