Merge pull request #59854 from goodsoft/patch-1

buildMix: fix bootstrapping packages with hyphens in version
This commit is contained in:
Joachim F 2019-04-20 11:14:13 +00:00 committed by GitHub
commit f0a49c1152
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,7 +40,7 @@ main(Args) ->
-spec fixup_app_name(file:name()) -> string().
fixup_app_name(Path) ->
BaseName = filename:basename(Path),
case string:tokens(BaseName, "-") of
case string:split(BaseName, "-") of
[Name, _Version] -> Name;
Name -> Name
end.