summaryrefslogtreecommitdiff
path: root/src/rebar_ct.erl
diff options
context:
space:
mode:
authorTuncer Ayaz <tuncer.ayaz@gmail.com>2011-01-08 19:09:24 +0100
committerTuncer Ayaz <tuncer.ayaz@gmail.com>2011-01-13 17:39:14 +0100
commite4036cbe56de29be1a4773d459c87700884f17d0 (patch)
treefdb73b434c6d63b18af621123cd690b20295bc9d /src/rebar_ct.erl
parentd922985b368cebfa10606f347d84eafb06c26d15 (diff)
Apply Tidier suggestions
Diffstat (limited to 'src/rebar_ct.erl')
-rw-r--r--src/rebar_ct.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_ct.erl b/src/rebar_ct.erl
index d6d4675..0c8e2ef 100644
--- a/src/rebar_ct.erl
+++ b/src/rebar_ct.erl
@@ -137,7 +137,7 @@ make_cmd(TestDir, Config) ->
%% that are part of the root Erlang install are filtered out to
%% avoid duplication
R = code:root_dir(),
- NonLibCodeDirs = [P || P <- code:get_path(), lists:prefix(R, P) == false],
+ NonLibCodeDirs = [P || P <- code:get_path(), not lists:prefix(R, P)],
CodeDirs = [io_lib:format("\"~s\"", [Dir]) ||
Dir <- [EbinDir|NonLibCodeDirs]],
CodePathString = string:join(CodeDirs, " "),