瀏覽代碼

output checkouts compilation to _build/<profile>/checkouts/

pull/2276/head
Tristan Sloughter 5 年之前
父節點
當前提交
d87b68b413
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: AAB97DDECCEB8150
共有 1 個檔案被更改,包括 4 行新增1 行删除
  1. +4
    -1
      src/rebar_app_utils.erl

+ 4
- 1
src/rebar_app_utils.erl 查看文件

@ -255,7 +255,10 @@ dep_to_app(Parent, DepsDir, Name, Vsn, Source, IsLock, State) ->
CheckoutsDir = rebar_utils:to_list(rebar_dir:checkouts_dir(State, Name)),
AppInfo = case rebar_app_info:discover(CheckoutsDir) of
{ok, App} ->
rebar_app_info:source(rebar_app_info:is_checkout(App, true), checkout);
OutDir = filename:join([DepsDir, "..", "checkouts", Name]),
rebar_app_info:out_dir(
rebar_app_info:source(
rebar_app_info:is_checkout(App, true), checkout), OutDir);
not_found ->
Dir = rebar_utils:to_list(filename:join(DepsDir, Name)),
{ok, AppInfo0} =

Loading…
取消
儲存