Skip to content

Commit 133c22f

Browse files
committed
Fix file.exists in new Ruby version
1 parent d46f525 commit 133c22f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/svn2git/migration.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def parse(args)
7070
options[:rebasebranch] = false
7171
options[:forceenustogit] = false
7272

73-
if File.exists?(File.expand_path(DEFAULT_AUTHORS_FILE))
73+
if File.exist?(File.expand_path(DEFAULT_AUTHORS_FILE))
7474
options[:authors] = DEFAULT_AUTHORS_FILE
7575
end
7676

0 commit comments

Comments
 (0)