Packages

Run custom shell commands with rebar3 oscmd <shell command>

Current section

Files

Jump to
rebar3_oscmd src rebar3_oscmd.erl
Raw

src/rebar3_oscmd.erl

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