summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2014-12-16 08:47:06 -0600
committerTristan Sloughter <t@crashfast.com>2014-12-16 10:01:36 -0600
commit3998dfb049f8e48c4595b72913837a0b8095a0fe (patch)
treeb698186b6cfe8d64c3a8951748f838a734932998
parent789761e64d288ebe57f4d2732e4264b60606f883 (diff)
update readme for 'as'
-rw-r--r--README.md1
-rw-r--r--src/rebar_prv_as.erl4
2 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index beea72d..3bf3714 100644
--- a/README.md
+++ b/README.md
@@ -27,6 +27,7 @@ limit scope.
| Command | Description |
|----------- |------------ |
+| as | Higher-order provider to run multiple tasks in sequence as certain profiles |
| compile | Build project |
| clean | Remove project apps beam files |
| ct | Run Common Test suites |
diff --git a/src/rebar_prv_as.erl b/src/rebar_prv_as.erl
index 1bd80cd..1ad22ed 100644
--- a/src/rebar_prv_as.erl
+++ b/src/rebar_prv_as.erl
@@ -25,9 +25,9 @@ init(State) ->
{bare, false},
{deps, ?DEPS},
{example, "rebar3 as <profile1>,<profile2>,... <task1>, <task2>, ..."},
- {short_desc, "Higher order provider for running multiple tasks in a sequence as a certain profile."},
+ {short_desc, "Higher order provider for running multiple tasks in a sequence as a certain profiles."},
{desc, ""},
- {opts, [{profile, undefined, undefined, string, "Profile to run as."}]}])),
+ {opts, [{profile, undefined, undefined, string, "Profiles to run as."}]}])),
{ok, State1}.
-spec do(rebar_state:t()) -> {ok, rebar_state:t()} | {error, string()}.