diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2010-01-06 17:31:14 +0100 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2010-01-06 17:31:14 +0100 |
commit | fb0cee2afb9c5932aaf5cbef10a2def594f27456 (patch) | |
tree | f516b63bb18cccad7e00abb310cd5f4df0856785 /ebin | |
parent | c9d175a30d6e63d7b1c3db4a0ed0b7d3d7b706be (diff) |
Implemented option to specify number of concurrent workers a command may use
Diffstat (limited to 'ebin')
-rw-r--r-- | ebin/rebar.app | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/ebin/rebar.app b/ebin/rebar.app index bd76ff7..cfd62d0 100644 --- a/ebin/rebar.app +++ b/ebin/rebar.app @@ -25,13 +25,16 @@ rebar_utils, getopt ]}, {registered, []}, - {applications, [kernel, - stdlib, + {applications, [kernel, + stdlib, sasl]}, {env, [ %% Default log level {log_level, error}, + %% Default parallel jobs + {jobs, 3}, + %% any_dir processing modules {any_dir_modules, [ rebar_subdirs, @@ -51,7 +54,7 @@ rebar_eunit, rebar_escripter ]}, - + {rel_dir, [ rebar_reltool ]} |