이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
도움말
가입하기
로그인
SisMaker
/
rebar3
보기
1
좋아요
0
포크
0
코드
이슈
0
풀 리퀘스트
0
Projects
0
릴리즈
62
위키
활동
소스 검색
Add a global config option skip_deps which when present will cause dependencies not to be added to the list of directories to process, useful for ./rebar skip_deps=true eunit so that you don't run the tests of every dependency.
David Reid
15 년 전
부모
bf3dfcb34b
커밋
b85c0b4515
1개의 변경된 파일
과
7개의 추가작업
그리고
1개의 파일을 삭제
분할 보기
Diff Options
Show Stats
Download Patch File
Download Diff File
+7
-1
src/rebar_deps.erl
+ 7
- 1
src/rebar_deps.erl
파일 보기
@ -50,7 +50,13 @@ preprocess(Config, _) ->
%
%
Walk
all
the
deps
and
make
sure
they
are
available
on
the
code
path
,
%
%
if
the
application
we
'
re
interested
in
actually
exists
there
.
ok
=
update_deps_code_path
(
Deps
)
,
{
ok
,
Config2
,
[
Dir
|
|
{
Dir
,
_
,
_
,
_
}
<
-
Deps
]
}
;
DepDirs
=
case
rebar_config
:
get_global
(
skip_deps
,
false
)
of
false
-
>
[
Dir
|
|
{
Dir
,
_
,
_
,
_
}
<
-
Deps
]
;
_
Specified
-
>
[
]
end
,
{
ok
,
Config2
,
DepDirs
}
;
{
'EXIT'
,
Reason
}
-
>
?
ABORT
(
"
Error while processing dependencies:
~p
\n
"
,
[
Reason
]
)
end
.
쓰기
미리보기
불러오는 중...
취소
저장