瀏覽代碼

Merge pull request #2228 from max-au/max-au/canonic_checkouts_dir

rebar_dir: return _checkouts path in a canonical form
pull/2237/head
Fred Hebert 5 年之前
committed by GitHub
父節點
當前提交
68a583d4aa
沒有發現已知的金鑰在資料庫的簽署中 GPG Key ID: 4AEE18F83AFDEB23
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/rebar_dir.erl

+ 1
- 1
src/rebar_dir.erl 查看文件

@ -89,7 +89,7 @@ root_dir(State) ->
%% @doc returns the expected location of the `_checkouts' directory.
-spec checkouts_dir(rebar_state:t()) -> file:filename_all().
checkouts_dir(State) ->
filename:join(root_dir(State), rebar_state:get(State, checkouts_dir, ?DEFAULT_CHECKOUTS_DIR)).
rebar_file_utils:canonical_path(filename:join(root_dir(State), rebar_state:get(State, checkouts_dir, ?DEFAULT_CHECKOUTS_DIR))).
%% @doc returns the expected location of a given app in the checkouts
%% directory for the project.

Loading…
取消
儲存