Skip to content

Commit

Permalink
Thanks clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
EliahKagan committed Sep 11, 2024
1 parent 9fb0519 commit 8674ae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/tools/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ fn should_skip_all_archive_creation() -> bool {
// in the directory than they should which makes them fail. It's probably a bad idea to generate archives on Windows
// anyway. Either Unix is portable OR no archive is created anywhere. This also means that Windows users can't create
// archives, but that's not a deal-breaker.
cfg!(windows) || (is_ci::cached() && !env::var_os("GIX_TEST_CREATE_ARCHIVES_EVEN_ON_CI").is_some())
cfg!(windows) || (is_ci::cached() && env::var_os("GIX_TEST_CREATE_ARCHIVES_EVEN_ON_CI").is_none())
}

fn is_lfs_pointer_file(path: &Path) -> bool {
Expand Down

0 comments on commit 8674ae3

Please sign in to comment.