Skip to content
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

Merged
merged 2 commits into from
Jul 21, 2018
Merged

work around for windows path separator for is_path_ignored #335

merged 2 commits into from
Jul 21, 2018

Conversation

Eh2406
Copy link
Contributor

@Eh2406 Eh2406 commented Jul 20, 2018

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 and replace.

Copy link
Member

@alexcrichton alexcrichton left a 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)]
Copy link
Member

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)]
Copy link
Member

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?

@Eh2406
Copy link
Contributor Author

Eh2406 commented Jul 20, 2018

Changes made.

Also it looks like bild tymes are rather high, and rls reports significant time in build_script_build. Is it possible that a build script is missing a rerun-if-changed and is being run every time?

@alexcrichton
Copy link
Member

Looks great, thanks! And yeah I'd be fine tweaking the build script if necessary

@alexcrichton alexcrichton merged commit fa653bc into rust-lang:master Jul 21, 2018
@Eh2406 Eh2406 deleted the windows_is_path_ignored branch July 21, 2018 14:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

is_path_ignored not working on windows
2 participants