@@ -174,11 +174,13 @@ pub fn scripted_fixture_repo_read_only_with_args(
174
174
if err. kind ( ) != std:: io:: ErrorKind :: NotFound {
175
175
eprintln ! ( "failed to extract '{}': {}" , archive_file_path. display( ) , err) ;
176
176
} 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
+ }
182
184
}
183
185
let script_absolute_path = std:: env:: current_dir ( ) ?. join ( script_path) ;
184
186
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
231
233
if is_ci:: cached ( ) {
232
234
return Ok ( ( ) ) ;
233
235
}
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) {
253
237
return Ok ( ( ) ) ;
254
238
}
255
239
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
280
264
res
281
265
}
282
266
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
+
283
286
const META_DIR_NAME : & str = "__gitoxide_meta__" ;
284
287
const META_IDENTITY : & str = "identity" ;
285
288
const META_GIT_VERSION : & str = "git-version" ;
0 commit comments