elasticsearch-elixir/bin/docs
2018-01-02 07:32:41 -08:00

8 lines
No EOL
250 B
Bash
Executable file

#!/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; }