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 @@ -903,7 +903,7 @@ defmodule Mix do
903
903
{ deps , config , system_env , consolidate_protocols? }
904
904
|> :erlang . term_to_binary ( )
905
905
|> :erlang . md5 ( )
906
- |> Base . encode16 ( case: :lower )
906
+ |> Base . url_encode64 ( case: :lower , padding: false )
907
907
908
908
force? = System . get_env ( "MIX_INSTALL_FORCE" ) in [ "1" , "true" ] or Keyword . fetch! ( opts , :force )
909
909
@@ -1079,7 +1079,7 @@ defmodule Mix do
1079
1079
System . get_env ( "MIX_INSTALL_DIR" ) ||
1080
1080
Path . join ( Mix.Utils . mix_cache ( ) , "installs" )
1081
1081
1082
- version = "elixir -#{ System . version ( ) } -erts -#{ :erlang . system_info ( :version ) } "
1082
+ version = "ex -#{ System . version ( ) } -erl -#{ :erlang . system_info ( :version ) } "
1083
1083
Path . join ( [ install_root , version , cache_id ] )
1084
1084
end
1085
1085
You can’t perform that action at this time.
0 commit comments