Zach пре 9 месеци
родитељ
комит
d5e7364bcf
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      detect/directory.go

+ 2 - 2
detect/directory.go

@@ -42,8 +42,8 @@ func (d *Detector) detectScanTarget(scanTarget sources.ScanTarget) error {
 	logger := logging.With().Str("path", display).Logger()
 	logger.Trace().Msg("Scanning path")
 
-	// --- Archive branch: extract and reschedule children ---
-	if isArchive(scanTarget.Path) {
+	// skipping windows archives for now
+	if isArchive(scanTarget.Path) && !isWindows {
 		logger.Debug().Msg("Found archive")
 
 		targets, tmpArchiveDir, err := extractArchive(scanTarget.Path)