-
Notifications
You must be signed in to change notification settings - Fork 353
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 project dirs path #774
Conversation
So on Linux, this remains at To fix Windows CI, you'll have to adjust the path here. |
ProjectDirs::from("miri", "miri", "miri") would get you `miri\miri` on Windows and `miri.miri.miri` on macOS. I'm assuming here that your intention was to have only a `miri` directory on every OS.
@RalfJung Yes. The arguments for |
I see. Would it make sense for us to use "rust" or "rust-lang" as "organization"? |
Qualifier is for macOS so that
rust or rust-lang could be an option, too, depends on how you want it to look like on macOS. If you want to go the full way, you could pick |
TBH I care very little about how our paths look like on macOS.^^ I was just wondering what makes most sense. |
Nobody seemed to care much when I asked on Zulip. So I'd say let's go with |
quite the opposite, let's do this |
@soc okay so can you make this |
@RalfJung Sorry for the delay, your commit looks good to me. Thanks! |
No trouble, and thanks for pointing out that we were using this API the wrong way. :) |
It's been a pleasure! Now I just need to fix cargo and the rest of the ecosystem. :-) |
would get you
miri\miri
on Windows andmiri.miri.miri
on macOS.I'm assuming here that your intention was to have only a
miri
directory on every OS.