Цей веб-сайт працює краще з JavaScript.
Головна
Огляд
Довідка
Реєстрація
Увійти
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 видалено
Розділений перегляд
Параметри порівняння
Показати статистику
Завантажити патч
Завантажити файл різниці
+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
.
Писати
Попередній перегляд
Завантаження…
Відмінити
Зберегти