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
894894 { deps , config , system_env , consolidate_protocols? }
895895 |> :erlang . term_to_binary ( )
896896 |> :erlang . md5 ( )
897- |> Base . encode16 ( case: :lower )
897+ |> Base . url_encode64 ( case: :lower , padding: false )
898898
899899 force? = System . get_env ( "MIX_INSTALL_FORCE" ) in [ "1" , "true" ] or Keyword . fetch! ( opts , :force )
900900
@@ -1068,7 +1068,7 @@ defmodule Mix do
10681068 System . get_env ( "MIX_INSTALL_DIR" ) ||
10691069 Path . join ( Mix.Utils . mix_cache ( ) , "installs" )
10701070
1071- version = "elixir -#{ System . version ( ) } -erts -#{ :erlang . system_info ( :version ) } "
1071+ version = "ex -#{ System . version ( ) } -erl -#{ :erlang . system_info ( :version ) } "
10721072 Path . join ( [ install_root , version , cache_id ] )
10731073 end
10741074
You can’t perform that action at this time.
0 commit comments