diff options
author | José Valim <[email protected]> | 2013-11-18 10:28:39 +0100 |
---|---|---|
committer | José Valim <[email protected]> | 2013-11-18 10:42:15 +0100 |
commit | 73b24fd1a0604e413fece30181cc632c1081aa29 (patch) | |
tree | 06371825a8876bc8d19e10755241510b341bbb02 /test/rlx_release_SUITE.erl | |
parent | 10620765c5028c24d57caba20b8e86b98351e3a5 (diff) | |
download | relx-73b24fd1a0604e413fece30181cc632c1081aa29.tar.gz relx-73b24fd1a0604e413fece30181cc632c1081aa29.tar.bz2 relx-73b24fd1a0604e413fece30181cc632c1081aa29.zip |
Support wildcards in lib dirs
Wildcards are supported in both lib_dirs in config files
as well via the -l command line option.
Diffstat (limited to 'test/rlx_release_SUITE.erl')
-rw-r--r-- | test/rlx_release_SUITE.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/rlx_release_SUITE.erl b/test/rlx_release_SUITE.erl index d16dce9..3087e63 100644 --- a/test/rlx_release_SUITE.erl +++ b/test/rlx_release_SUITE.erl @@ -130,7 +130,8 @@ make_extend_release(Config) -> [goal_app_1, goal_app_2]}, {release, {foo_test, "0.0.1", {extend, foo}}, - [goal_app_2]}]), + [goal_app_2]}, + {lib_dirs, [filename:join(LibDir1, "*")]}]), OutputDir = filename:join([proplists:get_value(data_dir, Config), create_random_name("relx-output")]), {ok, State} = relx:do(foo_test, undefined, [], [LibDir1], 3, |