Skip to content

Instantly share code, notes, and snippets.

@jeremyf
Created November 21, 2017 19:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeremyf/aa975e50f53459b544b6e693f61d7f8e to your computer and use it in GitHub Desktop.
Save jeremyf/aa975e50f53459b544b6e693f61d7f8e to your computer and use it in GitHub Desktop.
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