8 lines
No EOL
250 B
Bash
Executable file
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; } |