mirror of
https://github.com/correl/rebar.git
synced 2024-11-14 19:19:30 +00:00
Document the pre and post script hooks
This commit is contained in:
parent
064195dc5a
commit
2387a8e966
1 changed files with 12 additions and 0 deletions
|
@ -8,6 +8,18 @@
|
|||
%% Additional library directories to add to the code path
|
||||
{lib_dirs, []}.
|
||||
|
||||
%% Command to run before compiling
|
||||
{compile_pre_script, "./script.sh"}.
|
||||
|
||||
%% Command to run after compiling
|
||||
{compile_post_script, "./script.sh"}.
|
||||
|
||||
%% Command to run before cleaning
|
||||
{clean_pre_script, "./script.sh"}.
|
||||
|
||||
%% Command to run after cleaning
|
||||
{clean_post_script, "./script.sh"}.
|
||||
|
||||
%% == Erlang Compiler ==
|
||||
|
||||
%% Erlang files to compile before the rest. Rebar automatically compiles
|
||||
|
|
Loading…
Reference in a new issue