mirror of
https://github.com/correl/rebar.git
synced 2024-12-18 03:00:17 +00:00
Fix generate-appups regression (atom vs list)
This commit is contained in:
parent
11bf6b4aab
commit
c6da0b3ef6
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue