doctor: fix a couple of git-related checks
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
parent
7df7bd6a48
commit
9f4f23a7f4
@ -570,8 +570,7 @@ def check_for_multiple_volumes
|
|||||||
end
|
end
|
||||||
|
|
||||||
def check_for_git
|
def check_for_git
|
||||||
git = `/usr/bin/which git`.chomp
|
unless system "/usr/bin/which -s git"
|
||||||
if git.empty?
|
|
||||||
puts <<-EOS.undent
|
puts <<-EOS.undent
|
||||||
"Git" was not found in your path.
|
"Git" was not found in your path.
|
||||||
|
|
||||||
@ -586,11 +585,10 @@ def check_for_git
|
|||||||
end
|
end
|
||||||
|
|
||||||
def check_git_newline_settings
|
def check_git_newline_settings
|
||||||
git = `/usr/bin/which git`.chomp
|
return unless system "/usr/bin/which -s git"
|
||||||
return if git.empty?
|
|
||||||
|
|
||||||
autocrlf=`git config --get core.autocrlf`
|
autocrlf = `git config --get core.autocrlf`.chomp
|
||||||
safecrlf=`git config --get core.safecrlf`
|
safecrlf = `git config --get core.safecrlf`.chomp
|
||||||
|
|
||||||
if autocrlf == 'input' and safecrlf == 'true'
|
if autocrlf == 'input' and safecrlf == 'true'
|
||||||
puts <<-EOS.undent
|
puts <<-EOS.undent
|
||||||
|
Loading…
x
Reference in New Issue
Block a user