Skip to content

Commit 3633d2d

Browse files
committedJun 6, 2024·
File.exists? -> File.exist?
Fix: #22
1 parent a06f820 commit 3633d2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎rakelib/tags.rake

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module Tags
1414
PROJECT_DIR = ['.']
1515

1616
RVM_GEMDIR = File.join(`rvm gemdir`.strip, "gems") rescue nil
17-
SYSTEM_DIRS = RVM_GEMDIR && File.exists?(RVM_GEMDIR) ? RVM_GEMDIR : []
17+
SYSTEM_DIRS = RVM_GEMDIR && File.exist?(RVM_GEMDIR) ? RVM_GEMDIR : []
1818

1919
module_function
2020

0 commit comments

Comments
 (0)
Please sign in to comment.