diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2010-07-24 05:13:16 +0200 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2010-07-24 05:13:16 +0200 |
commit | 448e1ea20b82673a3e3ef3a31857a672a361cd7e (patch) | |
tree | 40cab722f683a767ef019aef8b04360e55e9ebec /ebin | |
parent | 34647928b2159468506f52444bd629f239db511d (diff) |
Put rebar_pre_script in correct app_dir module position
Erroneously put rebar_pre_script at the end of the app_dir modules
list in the previous commit.
Diffstat (limited to 'ebin')
-rw-r--r-- | ebin/rebar.app | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ebin/rebar.app b/ebin/rebar.app index b5a5457..6f9b6f5 100644 --- a/ebin/rebar.app +++ b/ebin/rebar.app @@ -58,6 +58,7 @@ %% Dir specific processing modules {modules, [ {app_dir, [ + rebar_pre_script, rebar_protobuffs_compiler, rebar_neotoma_compiler, rebar_asn1_compiler, @@ -72,8 +73,7 @@ rebar_escripter, rebar_edoc, rebar_xref, - rebar_post_script, - rebar_pre_script + rebar_post_script ]}, {rel_dir, [ |