-
Notifications
You must be signed in to change notification settings - Fork 413
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
work around for windows path separator for is_path_ignored #335
work around for windows path separator for is_path_ignored #335
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
src/repo.rs
Outdated
@@ -2540,4 +2554,18 @@ mod tests { | |||
let _ = repo.clear_ignore_rules(); | |||
assert!(!repo.is_path_ignored(Path::new("/foo")).unwrap()); | |||
} | |||
|
|||
#[test] | |||
#[cfg(windows)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could the be listed below with an if cfg!(windows)
guard instead?
src/repo.rs
Outdated
@@ -2043,6 +2043,20 @@ impl Repository { | |||
} | |||
|
|||
/// Test if the ignore rules apply to a given path. | |||
#[cfg(windows)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of #[cfg]
, could if cfg!(windows)
be used to conditionally do the to_string_lossy
instead?
Changes made. Also it looks like bild tymes are rather high, and rls reports significant time in |
Looks great, thanks! And yeah I'd be fine tweaking the build script if necessary |
This is the workaround requested in #334 and therefore closes #334. When this is pushed we can proceed on rust-lang/cargo#5733.
I wish there was a way to do this that did not involve two extra allocations.
to_string_lossy
andreplace
.