mirror of https://github.com/KLayout/klayout.git
_drc_engine.rb: replace removed method "file.exists?" with "file.exist?"
`file.exists?` got removed in version 3.2.0 see: https://www.ruby-lang.org/en/news/2022/12/25/ruby-3-2-0-released/
This commit is contained in:
parent
48b32733c2
commit
70104b5fa5
|
|
@ -122,7 +122,7 @@ module DRC
|
|||
|
||||
# Apply waive DB if possible
|
||||
wdb_file = rdb_file + ".w"
|
||||
if File.exists?(wdb_file)
|
||||
if File.exist?(wdb_file)
|
||||
begin
|
||||
wdb = RBA::ReportDatabase::new
|
||||
wdb.load(wdb_file)
|
||||
|
|
|
|||
Loading…
Reference in New Issue