summaryrefslogtreecommitdiff
path: root/src/rebar_appups.erl
diff options
context:
space:
mode:
authorjoewilliams <joe@joetify.com>2011-02-16 07:48:51 -0800
committerTuncer Ayaz <tuncer.ayaz@gmail.com>2011-02-16 17:07:12 +0100
commitc6da0b3ef668531ad31e33f52d865c4e36f47313 (patch)
tree3e6b3859f0496a878660b6c0c7a9e4e79c6e34a3 /src/rebar_appups.erl
parent11bf6b4aab33c273f0db94bded8763af68cbc167 (diff)
downloadrebar-c6da0b3ef668531ad31e33f52d865c4e36f47313.tar.gz
Fix generate-appups regression (atom vs list)
Diffstat (limited to 'src/rebar_appups.erl')
-rw-r--r--src/rebar_appups.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_appups.erl b/src/rebar_appups.erl
index e7333fd..b3a730e 100644
--- a/src/rebar_appups.erl
+++ b/src/rebar_appups.erl
@@ -108,7 +108,7 @@ file_to_name(File) ->
filename:rootname(filename:basename(File)).
genappup_which_apps(UpgradedApps, [First|Rest]) ->
- List = proplists:delete(First, UpgradedApps),
+ List = proplists:delete(list_to_atom(First), UpgradedApps),
genappup_which_apps(List, Rest);
genappup_which_apps(Apps, []) ->
Apps.