Ver código fonte

Merge pull request #325 from saleyn/reltool

Fix return value of rebar_overlay
pull/3/head
Dave Smith 12 anos atrás
pai
commit
d896fbffa7
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      src/rebar_reltool.erl

+ 1
- 1
src/rebar_reltool.erl Ver arquivo

@ -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),

Carregando…
Cancelar
Salvar