Packages

Generate BitBake recipes utilizing the classes from meta-erlang

Current section

Files

Jump to
rebar3_bitbake src rebar3_bitbake.erl
Raw

src/rebar3_bitbake.erl

-module(rebar3_bitbake).
-export([init/1]).
-spec init(rebar_state:t()) -> {ok, rebar_state:t()}.
init(State) ->
{ok, State1} = rebar3_bitbake_prv:init(State),
{ok, State1}.