File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -642,12 +642,12 @@ fn is_lfs_pointer_file(path: &Path) -> bool {
642
642
. map_or ( false , |_| buf. starts_with ( PREFIX ) )
643
643
}
644
644
645
- /// The `script_identity` will be baked into the soon to be created `archive` as it identitifies the script
645
+ /// The `script_identity` will be baked into the soon to be created `archive` as it identifies the script
646
646
/// that created the contents of `source_dir`.
647
647
fn create_archive_if_not_on_ci ( source_dir : & Path , archive : & Path , script_identity : u32 ) -> std:: io:: Result < ( ) > {
648
- // on windows , we fail to remove the meta_dir and can't do anything about it, which means tests will see more
649
- // in the directory than they should which makes them fail. It's probably a bad idea to generate archives on windows
650
- // anyway. Either unix is portable OR no archive is created anywhere. This also means that windows users can't create
648
+ // On Windows , we fail to remove the meta_dir and can't do anything about it, which means tests will see more
649
+ // in the directory than they should which makes them fail. It's probably a bad idea to generate archives on Windows
650
+ // anyway. Either Unix is portable OR no archive is created anywhere. This also means that Windows users can't create
651
651
// archives, but that's not a deal-breaker.
652
652
if cfg ! ( windows) || is_ci:: cached ( ) || is_excluded ( archive) {
653
653
return Ok ( ( ) ) ;
You can’t perform that action at this time.
0 commit comments