diff options
author | Tristan Sloughter <tristan.sloughter@gmail.com> | 2015-05-20 18:28:52 -0500 |
---|---|---|
committer | Tristan Sloughter <tristan.sloughter@gmail.com> | 2015-05-20 18:28:52 -0500 |
commit | 32370695675075b2394bc726887406ad12438e9c (patch) | |
tree | f0715a0679498cf90c2e55fcbb302276f0f3a7fc | |
parent | 41f31f608dff7837d80674600344d521982b10f4 (diff) | |
parent | 549aaf770fee20f0b0cf72c49b83b74781d9ada9 (diff) |
Merge pull request #455 from kovyl2404/init-command-parsed-args
Properly initialize command parsed args in rebar state
-rw-r--r-- | src/rebar_state.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_state.erl b/src/rebar_state.erl index dd72fed..55081a5 100644 --- a/src/rebar_state.erl +++ b/src/rebar_state.erl @@ -51,7 +51,7 @@ namespace = undefined :: atom(), command_args = [], - command_parsed_args = [], + command_parsed_args = {[], []}, project_apps = [] :: [rebar_app_info:t()], deps_to_build = [] :: [rebar_app_info:t()], |