summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2015-05-26 15:55:18 -0500
committerTristan Sloughter <t@crashfast.com>2015-05-26 15:55:55 -0500
commit8687ddc14a20606fafdd666ee058932b361e5113 (patch)
tree6f67cb4fb8cba02934fef3a4af575492379dcb76 /src
parentfe181f950d1588d6212f82f68f45e216eecf6c98 (diff)
reverse relx config so profile settings are used properly
Diffstat (limited to 'src')
-rw-r--r--src/rebar_prv_tar.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_prv_tar.erl b/src/rebar_prv_tar.erl
index f7557bd..78c2b0f 100644
--- a/src/rebar_prv_tar.erl
+++ b/src/rebar_prv_tar.erl
@@ -47,7 +47,7 @@ do(State) ->
,{caller, Caller}], AllOptions);
Config ->
relx:main([{lib_dirs, LibDirs}
- ,{config, Config}
+ ,{config, lists:reverse(Config)}
,{output_dir, OutputDir}
,{caller, Caller}], AllOptions)
end,