Browse Source

rebar_utils: call get_cwd/1 locally

pull/3/head
Tuncer Ayaz 12 years ago
parent
commit
e2492eb37f
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/rebar_utils.erl

+ 2
- 2
src/rebar_utils.erl View File

@ -309,10 +309,10 @@ src_dirs(SrcDirs) ->
SrcDirs.
test_dir() ->
filename:join(rebar_utils:get_cwd(), ?TEST_DIR).
filename:join(get_cwd(), ?TEST_DIR).
ebin_dir() ->
filename:join(rebar_utils:get_cwd(), "ebin").
filename:join(get_cwd(), "ebin").
processing_base_dir(Config) ->
Cwd = rebar_utils:get_cwd(),

Loading…
Cancel
Save