-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix exists on path #15
Conversation
What compiler version are you using? Right now, this function only exists in the nightly versions, but it has been stabilized, and will soon make its way into more stable releases. |
I can probably just add ARM MacOS builds to the CI pipeline, so you don't have to build it yourself. |
I've added the aarch64 macos builds to the ci matrix. @ghasbon @cocciasecca can you please verify that the |
The link to the new release is not working |
@cocciasecca whoops, sorry. This one should work: https://github.com/iliazeus/iso2god-rs/releases/tag/test-aarch64-macos |
It works perfectly.👌 |
Okay, great!
The proper solution on my side is probably to add a |
A bit, late, thanks for the consideration |
Rust 1.81 is out, and the current code now builds with stable Rust without issues. |
I tried to compile on M1 macbook, there is an issue with the fs::exists method, it seems it was removed. So instead I propose to use path.exists() method.