diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2010-03-17 01:26:32 +0100 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2010-03-17 01:26:32 +0100 |
commit | 3dfc7a848663da416ebc7068d69310118fef3314 (patch) | |
tree | 2ea03bcd262c7e9fee4ca7e360b2d3ceb2010bd1 /src | |
parent | c71ec1d68fc569035289380d1679bd92df6337ab (diff) |
Add get-deps and delete-deps to commands info and shell completion
Add get-deps and delete-deps to commands info string and
bash completion script.
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_core.erl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/rebar_core.erl b/src/rebar_core.erl index 0279971..e721576 100644 --- a/src/rebar_core.erl +++ b/src/rebar_core.erl @@ -123,7 +123,7 @@ set_global_flag(Options, Flag) -> rebar_config:set_global(Flag, Value). %% -%% print help +%% print help and maybe halt execution %% print_help_maybe_halt(Options, NonOptArgs) -> case proplists:get_bool(help, Options) of @@ -173,6 +173,9 @@ commands() -> "create-app Create simple app skel~n" "create-node Create simple node skel~n" "~n" +"get-deps Fetch dependencies~n" +"delete-deps Delete fetched dependencies~n" +"~n" "generate [dump_spec=0/1] Build release with reltool~n" "install [target=] Install build into target~n" "~n" |