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

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.