Skip to content

Commit c6bd30e

Browse files
committed
don't print archive message if archive is excluded (#301)
It will never exist so no need to highlight anything about archives, which is more confusing than it helps.
1 parent bc3c05e commit c6bd30e

File tree

1 file changed

+27
-24
lines changed

1 file changed

+27
-24
lines changed

tests/tools/src/lib.rs

+27-24
Original file line numberDiff line numberDiff line change
@@ -174,11 +174,13 @@ pub fn scripted_fixture_repo_read_only_with_args(
174174
if err.kind() != std::io::ErrorKind::NotFound {
175175
eprintln!("failed to extract '{}': {}", archive_file_path.display(), err);
176176
} else {
177-
eprintln!(
178-
"Archive at '{}' not found, creating fixture using script '{}'",
179-
archive_file_path.display(),
180-
script_location.display()
181-
);
177+
if !is_excluded(&archive_file_path) {
178+
eprintln!(
179+
"Archive at '{}' not found, creating fixture using script '{}'",
180+
archive_file_path.display(),
181+
script_location.display()
182+
);
183+
}
182184
}
183185
let script_absolute_path = std::env::current_dir()?.join(script_path);
184186
let output = std::process::Command::new("bash")
@@ -231,25 +233,7 @@ fn create_archive_if_not_on_ci(source_dir: &Path, archive: &Path, script_identit
231233
if is_ci::cached() {
232234
return Ok(());
233235
}
234-
let is_excluded_in_git = {
235-
let mut lut = EXCLUDE_LUT.lock();
236-
lut.as_mut()
237-
.and_then(|cache| {
238-
let archive = std::env::current_dir().ok()?.join(archive);
239-
let relative_path = archive.strip_prefix(cache.base()).ok()?;
240-
cache
241-
.at_path(
242-
relative_path,
243-
Some(false),
244-
|_oid, _buf| -> std::result::Result<_, Infallible> { unreachable!("") },
245-
)
246-
.ok()?
247-
.is_excluded()
248-
.into()
249-
})
250-
.unwrap_or(false)
251-
};
252-
if is_excluded_in_git {
236+
if is_excluded(archive) {
253237
return Ok(());
254238
}
255239
std::fs::create_dir_all(archive.parent().expect("archive is a file"))?;
@@ -280,6 +264,25 @@ fn create_archive_if_not_on_ci(source_dir: &Path, archive: &Path, script_identit
280264
res
281265
}
282266

267+
fn is_excluded(archive: &Path) -> bool {
268+
let mut lut = EXCLUDE_LUT.lock();
269+
lut.as_mut()
270+
.and_then(|cache| {
271+
let archive = std::env::current_dir().ok()?.join(archive);
272+
let relative_path = archive.strip_prefix(cache.base()).ok()?;
273+
cache
274+
.at_path(
275+
relative_path,
276+
Some(false),
277+
|_oid, _buf| -> std::result::Result<_, Infallible> { unreachable!("") },
278+
)
279+
.ok()?
280+
.is_excluded()
281+
.into()
282+
})
283+
.unwrap_or(false)
284+
}
285+
283286
const META_DIR_NAME: &str = "__gitoxide_meta__";
284287
const META_IDENTITY: &str = "identity";
285288
const META_GIT_VERSION: &str = "git-version";

0 commit comments

Comments
 (0)