mirror of
https://github.com/correl/rebar.git
synced 2025-04-10 09:11:06 -09: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, Cwd).
|
||||||
|
|
||||||
processing_base_dir(Config, Dir) ->
|
processing_base_dir(Config, Dir) ->
|
||||||
Dir =:= base_dir(Config).
|
AbsDir = filename:absname(Dir),
|
||||||
|
AbsDir =:= base_dir(Config).
|
||||||
|
|
||||||
%% ====================================================================
|
%% ====================================================================
|
||||||
%% Internal functions
|
%% Internal functions
|
||||||
|
|
Loading…
Add table
Reference in a new issue