You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Building from source using rustc 1.80.1 I was hitting "error[E0425]: cannot find function exists in module fs"
In this case src\bin\iso2god.rs line 178
Changing: fs::exists(path)?
to path.try_exists()?
Fixed the issue.
I apologise for lack of PR as I can't right now (plus my 'fix' may be skimming over something important), but may be useful for someone stuck?
The text was updated successfully, but these errors were encountered:
Building from source using rustc 1.80.1 I was hitting "error[E0425]: cannot find function
exists
in modulefs
"In this case src\bin\iso2god.rs line 178
Changing:
fs::exists(path)?
to
path.try_exists()?
Fixed the issue.
I apologise for lack of PR as I can't right now (plus my 'fix' may be skimming over something important), but may be useful for someone stuck?
The text was updated successfully, but these errors were encountered: