mirror of
https://github.com/correl/rebar.git
synced 2024-12-18 03:00:17 +00:00
Fix bug found by Dialyzer in neotoma compiler
Thanks to Cliff Moon for correct fun clause to add.
This commit is contained in:
parent
c2917b31d4
commit
77660c5da6
1 changed files with 4 additions and 2 deletions
|
@ -37,6 +37,7 @@
|
|||
%% "src" by defualt
|
||||
%% module_ext: characters to append to the module's name.
|
||||
%% "" by default
|
||||
%% source_ext: extension of peg source files
|
||||
-module(rebar_neotoma_compiler).
|
||||
|
||||
-export([compile/2]).
|
||||
|
@ -66,7 +67,8 @@ option(Opt, Options) ->
|
|||
|
||||
default(doc_root) -> "src";
|
||||
default(out_dir) -> "src";
|
||||
default(module_ext) -> "".
|
||||
default(module_ext) -> "";
|
||||
default(source_ext) -> ".peg".
|
||||
|
||||
compile_neo(Source, Target, Config) ->
|
||||
case code:which(neotoma) of
|
||||
|
|
Loading…
Reference in a new issue