From 9d653f906d24e45a43e0d4ee06d3bf18d7fa85a8 Mon Sep 17 00:00:00 2001 From: redpine50 Date: Thu, 8 May 2014 02:07:10 +0900 Subject: [PATCH] Update rebar_utils.erl On windows, bootstrap.bat failed with next error. Command 'escriptize' not understood or not applicable This happens because the drive name in path got from rebar_utils:get_cwd() and base_dir(Config) are different case. Made the drive name the same lowercase using filename:absname(). --- src/rebar_utils.erl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rebar_utils.erl b/src/rebar_utils.erl index 289f918..d39a394 100644 --- a/src/rebar_utils.erl +++ b/src/rebar_utils.erl @@ -316,7 +316,8 @@ processing_base_dir(Config) -> processing_base_dir(Config, Cwd). processing_base_dir(Config, Dir) -> - Dir =:= base_dir(Config). + Dir_abs = filename:absname(Dir), + Dir_abs =:= filename:absname(base_dir(Config)). %% ==================================================================== %% Internal functions