diff options
author | joewilliams <joe@joetify.com> | 2011-02-16 07:48:51 -0800 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2011-02-16 17:07:12 +0100 |
commit | c6da0b3ef668531ad31e33f52d865c4e36f47313 (patch) | |
tree | 3e6b3859f0496a878660b6c0c7a9e4e79c6e34a3 /src | |
parent | 11bf6b4aab33c273f0db94bded8763af68cbc167 (diff) |
Fix generate-appups regression (atom vs list)
Diffstat (limited to 'src')
-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 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. |