Browse Source

Merge pull request #274 from redpine50/broken_on_win

Use lowercase for Windows drive name to resolve issue #250
pull/3/head
Jared Morrow 11 years ago
parent
commit
7d4d3642b6
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      src/rebar_utils.erl

+ 2
- 1
src/rebar_utils.erl View File

@ -316,7 +316,8 @@ processing_base_dir(Config) ->
processing_base_dir(Config, Cwd).
processing_base_dir(Config, Dir) ->
Dir =:= base_dir(Config).
AbsDir = filename:absname(Dir),
AbsDir =:= base_dir(Config).
%% ====================================================================
%% Internal functions

Loading…
Cancel
Save