diff options
author | Tristan Sloughter <t@crashfast.com> | 2015-05-26 15:55:18 -0500 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2015-05-26 15:55:55 -0500 |
commit | 8687ddc14a20606fafdd666ee058932b361e5113 (patch) | |
tree | 6f67cb4fb8cba02934fef3a4af575492379dcb76 | |
parent | fe181f950d1588d6212f82f68f45e216eecf6c98 (diff) |
reverse relx config so profile settings are used properly
-rw-r--r-- | src/rebar_prv_tar.erl | 2 |
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, |