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
903903 { deps , config , system_env , consolidate_protocols? }
904904 |> :erlang . term_to_binary ( )
905905 |> :erlang . md5 ( )
906- |> Base . encode16 ( case: :lower )
906+ |> Base . url_encode64 ( case: :lower , padding: false )
907907
908908 force? = System . get_env ( "MIX_INSTALL_FORCE" ) in [ "1" , "true" ] or Keyword . fetch! ( opts , :force )
909909
@@ -1079,7 +1079,7 @@ defmodule Mix do
10791079 System . get_env ( "MIX_INSTALL_DIR" ) ||
10801080 Path . join ( Mix.Utils . mix_cache ( ) , "installs" )
10811081
1082- version = "elixir -#{ System . version ( ) } -erts -#{ :erlang . system_info ( :version ) } "
1082+ version = "ex -#{ System . version ( ) } -erl -#{ :erlang . system_info ( :version ) } "
10831083 Path . join ( [ install_root , version , cache_id ] )
10841084 end
10851085
You can’t perform that action at this time.
0 commit comments