summaryrefslogtreecommitdiff
path: root/src/rebar_dir.erl
diff options
context:
space:
mode:
authorPierre Fenoll <pierrefenoll@gmail.com>2018-02-16 17:48:17 +0100
committerPierre Fenoll <pierrefenoll@gmail.com>2018-03-02 12:53:22 +0100
commit9f0e3a2e5b6ea3eccda14660bc64570738ee7796 (patch)
treef8291899675e18f10cca2059ed2dbc622cd9e16f /src/rebar_dir.erl
parent3146a285fb1c9e0028a9c09977c6da11df76d6e6 (diff)
Revert "sort-as: force an order on multiple profiles"
This reverts commit 3f8dd5eacebb913144f3615fdf44658b6223a791.
Diffstat (limited to 'src/rebar_dir.erl')
-rw-r--r--src/rebar_dir.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_dir.erl b/src/rebar_dir.erl
index ee4d3d4..d7be423 100644
--- a/src/rebar_dir.erl
+++ b/src/rebar_dir.erl
@@ -49,7 +49,7 @@ profile_dir(Opts, Profiles) ->
%% of profiles to match order passed to `as`
["default"|Rest] -> {rebar_opts:get(Opts, base_dir, ?DEFAULT_BASE_DIR), Rest}
end,
- ProfilesDir = rebar_string:join(lists:sort(ProfilesStrings), "+"),
+ ProfilesDir = rebar_string:join(ProfilesStrings, "+"),
filename:join(BaseDir, ProfilesDir).
%% @doc returns the directory where dependencies should be placed