summaryrefslogtreecommitdiff
path: root/src/rebar_appups.erl
diff options
context:
space:
mode:
authorTuncer Ayaz <tuncer.ayaz@gmail.com>2012-04-22 21:53:32 +0200
committerTuncer Ayaz <tuncer.ayaz@gmail.com>2012-07-13 15:21:56 +0200
commite185e86bff17fa7d093f8b24fcc45069ffde55ae (patch)
tree08cbdc29922bc67d691f21be9d76d7a5c8d4c668 /src/rebar_appups.erl
parent1948eb4a47c1aa61aebbd046aa951f103a1f8644 (diff)
downloadrebar-e185e86bff17fa7d093f8b24fcc45069ffde55ae.tar.gz
Remove shared state
Diffstat (limited to 'src/rebar_appups.erl')
-rw-r--r--src/rebar_appups.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rebar_appups.erl b/src/rebar_appups.erl
index 6271e77..88cf8d9 100644
--- a/src/rebar_appups.erl
+++ b/src/rebar_appups.erl
@@ -38,9 +38,9 @@
%% Public API
%% ====================================================================
-'generate-appups'(_Config, ReltoolFile) ->
+'generate-appups'(Config, ReltoolFile) ->
%% Get the old release path
- ReltoolConfig = rebar_rel_utils:load_config(ReltoolFile),
+ {Config1, ReltoolConfig} = rebar_rel_utils:load_config(Config, ReltoolFile),
TargetParentDir = rebar_rel_utils:get_target_parent_dir(ReltoolConfig),
OldVerPath = filename:join([TargetParentDir,
@@ -75,7 +75,7 @@
%% Generate appup files for upgraded apps
generate_appup_files(NewVerPath, OldVerPath, UpgradeApps),
- ok.
+ {ok, Config1}.
%% ===================================================================
%% Internal functions