build: do not use rsync to synchronise file anymore.

This commit is contained in:
Alexandre Pujol 2023-11-19 14:47:55 +00:00
parent 5eb120cdbb
commit 9e04743156
No known key found for this signature in database
GPG key ID: C5469996F0DF68EC
5 changed files with 4 additions and 9 deletions

View file

@ -61,7 +61,7 @@ func getSupportedDistribution() string {
}
func copyTo(src *paths.Path, dst *paths.Path) error {
files, err := src.ReadDirRecursiveFiltered(nil, paths.FilterOutDirectories())
files, err := src.ReadDirRecursiveFiltered(nil, paths.FilterOutDirectories(), paths.FilterOutNames("README.md"))
if err != nil {
return err
}