mirror of
https://github.com/correl/rebar.git
synced 2024-11-14 19:19:30 +00:00
Merge pull request #274 from redpine50/broken_on_win
Use lowercase for Windows drive name to resolve issue #250
This commit is contained in:
commit
7d4d3642b6
1 changed files with 2 additions and 1 deletions
|
@ -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…
Reference in a new issue