aboutsummaryrefslogtreecommitdiffstats
path: root/test/rclt_command_SUITE.erl
diff options
context:
space:
mode:
authorEric B Merritt <[email protected]>2013-04-09 16:40:29 -0700
committerEric B Merritt <[email protected]>2013-04-09 16:40:50 -0700
commit4e863bd88520be1a786026eeb861cb70d00e7b01 (patch)
tree5fd62ac16db0044a0f8bac4914e39be76ced2447 /test/rclt_command_SUITE.erl
parent9cc71b80c4387579469042b93f3240a0fd7c41c2 (diff)
downloadrelx-4e863bd88520be1a786026eeb861cb70d00e7b01.tar.gz
relx-4e863bd88520be1a786026eeb861cb70d00e7b01.tar.bz2
relx-4e863bd88520be1a786026eeb861cb70d00e7b01.zip
fixes #29 - look for common sub dirs for discovery
With this change relcool looks for the common sub directories to add to the search. Those directories are now, relative to the project dir, `apps`, `lib`, `ebin`, and the release output dir. These automatic subdirs can be disabled by setting `disable_project_subdirs` to `true` in the config. The release output dir is also added to the discovery process. This can be disabled by setting `disable_discover_release_output` to true.
Diffstat (limited to 'test/rclt_command_SUITE.erl')
-rw-r--r--test/rclt_command_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/rclt_command_SUITE.erl b/test/rclt_command_SUITE.erl
index 3d06dad..9c96005 100644
--- a/test/rclt_command_SUITE.erl
+++ b/test/rclt_command_SUITE.erl
@@ -45,8 +45,8 @@ all() ->
normal_passing_case(Config) ->
DataDir = proplists:get_value(data_dir, Config),
- Lib1 = filename:join([DataDir, "lib1"]),
- Lib2 = filename:join([DataDir, "lib2"]),
+ Lib1 = filename:join([DataDir, <<"lib1">>]),
+ Lib2 = filename:join([DataDir, <<"lib2">>]),
Outdir = filename:join([DataDir, "outdir"]),
ok = rcl_util:mkdir_p(Lib1),
ok = rcl_util:mkdir_p(Lib2),