We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e0667c commit aeff8d3Copy full SHA for aeff8d3
lib/git-smart/git_repo.rb
@@ -20,7 +20,7 @@ def initialize(dir)
20
def git_dir
21
gitdir = Pathname.new(@dir).join('.git')
22
23
- unless File.exists?(gitdir)
+ unless File.exist?(gitdir)
24
@dir = git('rev-parse', '--show-toplevel').chomp
25
gitdir = Pathname.new(@dir).join('.git') unless @dir.empty?
26
end
0 commit comments