elasticsearch-elixir/bin/docs

8 lines
250 B
Text
Raw Permalink Normal View History

2018-01-02 07:32:41 -08:00
#!/usr/bin/env bash
#
# Generate Documentation
#
# Creates HTML documentation and opens it in your local browser.
mix docs || { echo 'Docs did not generate!'; exit 1; }
open doc/index.html || { echo 'Could not open docs in local browser!'; exit 1; }