summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDave Smith <dizzyd@dizzyd.com>2013-06-16 06:21:59 -0700
committerDave Smith <dizzyd@dizzyd.com>2013-06-16 06:21:59 -0700
commitbaf2655343f06c9a8e5bd203cf3d55e1715b3964 (patch)
tree9f48254b3b245180068937db9c9bb1a8aaf7dd9c /src
parent2f4de5359c13b556d37130c02c944c5ed63add76 (diff)
parentb63328bb16adf491fef45a9e1488718f427d095c (diff)
Merge pull request #44 from nevar/fix_neotoma
Correct ext of neotoma output file
Diffstat (limited to 'src')
-rw-r--r--src/rebar_neotoma_compiler.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rebar_neotoma_compiler.erl b/src/rebar_neotoma_compiler.erl
index 5607aa4..b9f23f2 100644
--- a/src/rebar_neotoma_compiler.erl
+++ b/src/rebar_neotoma_compiler.erl
@@ -56,8 +56,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