浏览代码

switch ct provider to use external provider behavior

pull/3/head
Tristan Sloughter 10 年前
父节点
当前提交
ed017289ed
共有 3 个文件被更改,包括 5 次插入4 次删除
  1. +1
    -1
      bootstrap/bootstrap
  2. +1
    -0
      src/rebar.app.src
  3. +3
    -3
      src/rebar_prv_common_test.erl

+ 1
- 1
bootstrap/bootstrap 查看文件

@ -46,7 +46,7 @@ main(Args) ->
false -> undefined
end,
os:cmd("./bootstrap/rebar get-deps compile -r"),
os:cmd("./bootstrap/rebar get-deps compile"),
%% Compile all src/*.erl to ebin
%% To not accidentally try to compile files like Mac OS X resource forks,

+ 1
- 0
src/rebar.app.src 查看文件

@ -14,6 +14,7 @@
syntax_tools,
tools,
erlware_commons,
providers,
relx,
inets]},
{env, [

+ 3
- 3
src/rebar_prv_common_test.erl 查看文件

@ -3,11 +3,11 @@
-module(rebar_prv_common_test).
-behaviour(rebar_provider).
-behaviour(provider).
-export([init/1,
format_error/2,
do/1]).
do/1,
format_error/2]).
-include("rebar.hrl").

正在加载...
取消
保存