diff options
Diffstat (limited to 'doc/plugins.md')
-rw-r--r-- | doc/plugins.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/plugins.md b/doc/plugins.md index f31f96b..5ba8e65 100644 --- a/doc/plugins.md +++ b/doc/plugins.md @@ -61,10 +61,11 @@ In this tutorial, we'll show how to start from scratch, and get a basic plugin w The first step is to create a new OTP Application that will contain the plugin: - → git init - Initialized empty Git repository in /Users/ferd/code/self/rebar3-todo-plugin/.git/ → rebar3 new plugin provider_todo desc="example rebar3 plugin" ... + → cd provider_todo + → git init + Initialized empty Git repository in /Users/ferd/code/self/provider_todo/.git/ Open up the `src/provider_todo.erl` file and make sure you have the following skeleton in place: |