mirror of
https://github.com/correl/rebar.git
synced 2024-11-14 19:19:30 +00:00
Merge pull request #325 from saleyn/reltool
Fix return value of rebar_overlay
This commit is contained in:
commit
d896fbffa7
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ generate(Config0, ReltoolFile) ->
|
|||
overlay(Config, ReltoolFile) ->
|
||||
%% Load the reltool configuration from the file
|
||||
{Config1, ReltoolConfig} = rebar_rel_utils:load_config(Config, ReltoolFile),
|
||||
{Config1, process_overlay(Config, ReltoolConfig)}.
|
||||
{process_overlay(Config, ReltoolConfig), Config1}.
|
||||
|
||||
clean(Config, ReltoolFile) ->
|
||||
{Config1, ReltoolConfig} = rebar_rel_utils:load_config(Config, ReltoolFile),
|
||||
|
|
Loading…
Reference in a new issue