File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -894,7 +894,7 @@ defmodule Mix do
894
894
{ deps , config , system_env , consolidate_protocols? }
895
895
|> :erlang . term_to_binary ( )
896
896
|> :erlang . md5 ( )
897
- |> Base . encode16 ( case: :lower )
897
+ |> Base . url_encode64 ( case: :lower , padding: false )
898
898
899
899
force? = System . get_env ( "MIX_INSTALL_FORCE" ) in [ "1" , "true" ] or Keyword . fetch! ( opts , :force )
900
900
@@ -1068,7 +1068,7 @@ defmodule Mix do
1068
1068
System . get_env ( "MIX_INSTALL_DIR" ) ||
1069
1069
Path . join ( Mix.Utils . mix_cache ( ) , "installs" )
1070
1070
1071
- version = "elixir -#{ System . version ( ) } -erts -#{ :erlang . system_info ( :version ) } "
1071
+ version = "ex -#{ System . version ( ) } -erl -#{ :erlang . system_info ( :version ) } "
1072
1072
Path . join ( [ install_root , version , cache_id ] )
1073
1073
end
1074
1074
You can’t perform that action at this time.
0 commit comments