Skip to content
This repository has been archived by the owner on May 12, 2018. It is now read-only.

Commit

Permalink
Document support for abbreviated commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Tuncer Ayaz committed Feb 24, 2014
1 parent 289a71e commit c29f8b4
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/rebar.erl
Expand Up @@ -187,6 +187,16 @@ help() ->
?CONSOLE(
"Type 'rebar help <CMD1> <CMD2>' for help on specific commands."
"~n~n", []),
?CONSOLE(
"rebar allows you to abbreviate the command to run:~n"
"$ rebar co # same as rebar compile~n"
"$ rebar eu # same as rebar eunit~n"
"$ rebar g-d # same as rebar get-deps~n"
"$ rebar x eu # same as rebar xref eunit~n"
"$ rebar l-d # same as rebar list-deps~n"
"$ rebar l-d l-t # same as rebar list-deps list-templates~n"
"$ rebar list-d l-te # same as rebar list-deps list-templates~n"
"~n", []),
?CONSOLE(
"Core rebar.config options:~n"
" ~p~n"
Expand Down

0 comments on commit c29f8b4

Please sign in to comment.