Skip to content

Commit 7ac34d3

Browse files
committed
Auto merge of #14380 - jemtucker:fix-14379, r=epage
Use longhand gitoxide path-spec patterns Closes #14379
2 parents f3fee6d + 9785142 commit 7ac34d3

File tree

2 files changed

+25
-3
lines changed

2 files changed

+25
-3
lines changed

src/cargo/sources/path.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -610,11 +610,11 @@ fn list_files_gix(
610610

611611
let pathspec = {
612612
// Include the package root.
613-
let mut include = BString::from(":/");
613+
let mut include = BString::from(":(top)");
614614
include.push_str(package_prefix.as_ref());
615615

616616
// Exclude the target directory.
617-
let mut exclude = BString::from(":!/");
617+
let mut exclude = BString::from(":!(exclude,top)");
618618
exclude.push_str(target_prefix.as_ref());
619619

620620
vec![include, exclude]

tests/testsuite/build_script.rs

+23-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use cargo_test_support::tools;
1414
use cargo_test_support::{
1515
basic_manifest, cargo_exe, cross_compile, is_coarse_mtime, project, project_in,
1616
};
17-
use cargo_test_support::{rustc_host, sleep_ms, slow_cpu_multiplier, symlink_supported};
17+
use cargo_test_support::{git, rustc_host, sleep_ms, slow_cpu_multiplier, symlink_supported};
1818
use cargo_util::paths::{self, remove_dir_all};
1919

2020
#[cargo_test]
@@ -5814,3 +5814,25 @@ fn links_overrides_with_target_applies_to_host() {
58145814
"#]])
58155815
.run();
58165816
}
5817+
5818+
#[cargo_test]
5819+
fn directory_with_leading_underscore() {
5820+
let p: cargo_test_support::Project = git::new("foo", |p| {
5821+
p.no_manifest()
5822+
.file(
5823+
"_foo/foo/Cargo.toml",
5824+
r#"
5825+
[package]
5826+
name = "foo"
5827+
version = "0.1.0"
5828+
edition = "2021"
5829+
build = "build.rs"
5830+
"#,
5831+
)
5832+
.file("_foo/foo/src/main.rs", "fn main() {}")
5833+
.file("_foo/foo/build.rs", "fn main() { }")
5834+
});
5835+
p.cargo("build --manifest-path=_foo/foo/Cargo.toml -v")
5836+
.with_status(0)
5837+
.run();
5838+
}

0 commit comments

Comments
 (0)