updated filepattern regex
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing

This commit is contained in:
Paul 2025-07-25 11:32:06 +02:00
parent cf1fc0a32b
commit e500eadc0e

2
src/cache/cache.go vendored
View File

@ -18,7 +18,7 @@ import (
"time"
)
var filepattern = regexp.MustCompile(`((In)?Release(\.gpg)?|Packages(\.gz|\.bz2)?|Contents-(arm64|armhf|amd64)(\.gz)|Sources.bz2?)`)
var filepattern = regexp.MustCompile(`((In)?Release(\.gpg)?|Packages(\.gz|\.bz2)?|Contents-(arm64|armhf|amd64)(\.gz)|Sources(\.gz|\.bz2)?)`)
// Reader is a generic interface for reading cache entries either from disk or
// directly attached to a downloader.