diff options
Diffstat (limited to 'src/rebar_erlc_compiler.erl')
-rw-r--r-- | src/rebar_erlc_compiler.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rebar_erlc_compiler.erl b/src/rebar_erlc_compiler.erl index 2549030..80adc4e 100644 --- a/src/rebar_erlc_compiler.erl +++ b/src/rebar_erlc_compiler.erl @@ -124,6 +124,7 @@ internal_erl_compile(Source, Config, Outdir) -> %% Construct the target filename Target = filename:join([Outdir | string:tokens(Module, ".")]) ++ ".beam", + ok = filelib:ensure_dir(Target), %% If the file needs compilation, based on last mod date of includes or %% the target, |