File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ defmodule Mix.Hex do
11
11
true
12
12
else
13
13
shell = Mix . shell
14
- shell . info "Could not find hex , which is needed to build dependency #{ inspect app } "
14
+ shell . info "Could not find Hex , which is needed to build dependency #{ inspect app } "
15
15
16
- if shell . yes? ( "Shall I install hex ?" ) do
16
+ if shell . yes? ( "Shall I install Hex ?" ) do
17
17
Mix.Tasks.Local.Hex . run [ "--force" ]
18
18
else
19
19
false
@@ -31,9 +31,9 @@ defmodule Mix.Hex do
31
31
not Code . ensure_loaded? ( Hex ) ->
32
32
false
33
33
not Version . match? ( Hex . version , @ hex_requirement ) ->
34
- Mix . shell . info "Mix requires hex #{ @ hex_requirement } but you have #{ Hex . version } "
34
+ Mix . shell . info "Mix requires Hex #{ @ hex_requirement } but you have #{ Hex . version } "
35
35
36
- if Mix . shell . yes? ( "Shall I abort the current command and update hex ?" ) do
36
+ if Mix . shell . yes? ( "Shall I abort the current command and update Hex ?" ) do
37
37
Mix.Tasks.Local.Hex . run [ "--force" ]
38
38
exit ( { :shutdown , 0 } )
39
39
end
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ defmodule Mix.Tasks.Local.Hex do
5
5
@ hex_list_url @ hex_s3 <> "/installs/hex-1.x.csv"
6
6
@ hex_archive_url @ hex_s3 <> "/installs/[VERSION]/hex.ez"
7
7
8
- @ shortdoc "Installs hex locally"
8
+ @ shortdoc "Installs Hex locally"
9
9
10
10
@ moduledoc """
11
11
Installs Hex locally.
You can’t perform that action at this time.
0 commit comments