diff options
author | Slava Yurin <v.yurin@office.ngs.ru> | 2012-12-14 10:45:57 +0700 |
---|---|---|
committer | Slava Yurin <v.yurin@office.ngs.ru> | 2012-12-31 11:16:47 +0700 |
commit | b63328bb16adf491fef45a9e1488718f427d095c (patch) | |
tree | 8e9b227d7b9b585cd26a48cfbf2f99b645bc8fb5 | |
parent | 78fa8fc3d5215e076284b37394e5ca149e945997 (diff) |
Correct ext of neotoma output file
-rw-r--r-- | src/rebar_neotoma_compiler.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rebar_neotoma_compiler.erl b/src/rebar_neotoma_compiler.erl index 33f32e3..93facf4 100644 --- a/src/rebar_neotoma_compiler.erl +++ b/src/rebar_neotoma_compiler.erl @@ -53,8 +53,8 @@ compile(Config, _AppFile) -> rebar_base_compiler:run(Config, [], option(doc_root, NeoOpts), ".peg", option(out_dir, NeoOpts), - option(module_ext, NeoOpts) ++ ".beam", - fun compile_neo/3, [{check_last_mod,false}]). + option(module_ext, NeoOpts) ++ ".erl", + fun compile_neo/3, [{check_last_mod, true}]). %% ============================================================================ %% Internal functions |