Actions
Patch #36358
closedUse File.exist? instead of deprecated File.exists?
Description
you will see a lot of deprecation warnings when running tests with Ruby 3.0 or later.
/path/to/redmine/lib/redmine/scm/adapters/abstract_adapter.rb:219: warning: File.exists? is deprecated; use File.exist? instead
The attached patch replaces all File.exists?
with File.exist?
.
Files
Actions