Skip to content

Commit aeff8d3

Browse files
committed
Use File.exist? instead of exists?
1 parent 3e0667c commit aeff8d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/git-smart/git_repo.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def initialize(dir)
2020
def git_dir
2121
gitdir = Pathname.new(@dir).join('.git')
2222

23-
unless File.exists?(gitdir)
23+
unless File.exist?(gitdir)
2424
@dir = git('rev-parse', '--show-toplevel').chomp
2525
gitdir = Pathname.new(@dir).join('.git') unless @dir.empty?
2626
end

0 commit comments

Comments
 (0)