diff options
author | Steven Gravell <steve.gravell@smarkets.com> | 2011-07-01 18:28:48 +0100 |
---|---|---|
committer | Steven Gravell <steve.gravell@smarkets.com> | 2011-07-01 18:28:48 +0100 |
commit | d00845b4907a67036a66c46a2cf59b8a92f28350 (patch) | |
tree | 59dd8b9e21eab800028becc72ab3702b7a7d81fd | |
parent | 3e4138537f089c8c1a5e5f9173603569aa012eca (diff) |
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), |