wp-theme/_ci/build.sh

20 lines
448 B
Bash
Executable File

#!/usr/bin/env bash
set -e;
echo "$(tput setaf 136)"
echo "============================================="
echo " Starting build "
echo "============================================="
echo "$(tput sgr0)" # reset
gulp build
echo "$(tput setaf 64)" # green
echo "---------------------------------------------"
echo " ✓ done building"
echo "---------------------------------------------"
echo "$(tput sgr0)" # reset
exit;