diff options
author | Joe Williams <joe@joetify.com> | 2011-07-01 11:09:53 -0700 |
---|---|---|
committer | Joe Williams <joe@joetify.com> | 2011-07-01 11:09:53 -0700 |
commit | 4c5ec87988bee1448bae426a90ca7621d77938d2 (patch) | |
tree | 59dd8b9e21eab800028becc72ab3702b7a7d81fd | |
parent | 3e4138537f089c8c1a5e5f9173603569aa012eca (diff) | |
parent | d00845b4907a67036a66c46a2cf59b8a92f28350 (diff) |
Merge pull request #91 from smarkets/appup-load-module-fix
default module appup instruction -> load_module
-rw-r--r-- | src/rebar_appups.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_appups.erl b/src/rebar_appups.erl index 871c426..03c67c9 100644 --- a/src/rebar_appups.erl +++ b/src/rebar_appups.erl @@ -174,7 +174,7 @@ generate_instruction_advanced(Name, _, code_change) -> {update, Name, {advanced, []}}; generate_instruction_advanced(Name, _, _) -> %% Anything else - {update, Name}. + {load_module, Name}. get_behavior(List) -> Attributes = proplists:get_value(attributes, List), |