diff options
author | Tristan Sloughter <[email protected]> | 2014-05-04 18:03:47 -0500 |
---|---|---|
committer | Tristan Sloughter <[email protected]> | 2014-05-09 20:12:06 -0500 |
commit | 58483667f599433d9843445159522b8f0353419c (patch) | |
tree | 72add2561969a6714f51340eb7752ea65d951bc9 /test/rlx_command_SUITE.erl | |
parent | 4c50cb6ab933cd08f51763f9a62436271d9962f5 (diff) | |
download | relx-58483667f599433d9843445159522b8f0353419c.tar.gz relx-58483667f599433d9843445159522b8f0353419c.tar.bz2 relx-58483667f599433d9843445159522b8f0353419c.zip |
breaking change: output release to <output_dir>/<release_name>/
Diffstat (limited to 'test/rlx_command_SUITE.erl')
-rw-r--r-- | test/rlx_command_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rlx_command_SUITE.erl b/test/rlx_command_SUITE.erl index 5ea4769..2e1ef1d 100644 --- a/test/rlx_command_SUITE.erl +++ b/test/rlx_command_SUITE.erl @@ -63,7 +63,7 @@ normal_passing_case(Config) -> {ok, State} = rlx_cmd_args:args2state(Opts, Targets), ?assertMatch([Lib1, Lib2], rlx_state:lib_dirs(State)), - ?assertMatch(Outdir, rlx_state:output_dir(State)), + ?assertMatch(Outdir, rlx_state:base_output_dir(State)), ?assertMatch([{app1,{{33,33},{[],[<<"build4">>]}},lte}, {app2, |