소스 검색

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

pull/2276/head
Tristan Sloughter 5 년 전
부모
커밋
d87b68b413
No known key found for this signature in database 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} =

불러오는 중...
취소
저장