Cibuild proposal that includes indication on what is starting and stopping
#!/usr/bin/env bash | |
set -e # halt script on error | |
echo "=~=~=~=~=~= Starting jekyll build =~=~=~=~=~=" | |
bundle exec jekyll build | |
echo "=~=~=~=~=~= Finished jekyll build =~=~=~=~=~=" | |
echo "=~=~=~=~=~= Starting htmlproofer =~=~=~=~=~=" | |
bundle exec htmlproofer ./_site | |
echo "=~=~=~=~=~= Finished htmlproofer =~=~=~=~=~=" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment