mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-06 03:13:48 +02:00
860b4a8f81
Signed-off-by: Carlos Becker <caarlos0@gmail.com>
39 lines
914 B
Go
39 lines
914 B
Go
package extrafiles
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/apex/log"
|
|
"github.com/goreleaser/fileglob"
|
|
"github.com/goreleaser/goreleaser/pkg/config"
|
|
)
|
|
|
|
// Find resolves extra files globs et al into a map of names/paths or an error.
|
|
func Find(files []config.ExtraFile) (map[string]string, error) {
|
|
result := map[string]string{}
|
|
for _, extra := range files {
|
|
if extra.Glob == "" {
|
|
continue
|
|
}
|
|
files, err := fileglob.Glob(extra.Glob)
|
|
if err != nil {
|
|
return result, fmt.Errorf("globbing failed for pattern %s: %w", extra.Glob, err)
|
|
}
|
|
for _, file := range files {
|
|
info, err := os.Stat(file)
|
|
if err == nil && info.IsDir() {
|
|
log.Debugf("ignoring directory %s", file)
|
|
continue
|
|
}
|
|
name := filepath.Base(file)
|
|
if old, ok := result[name]; ok {
|
|
log.Warnf("overriding %s with %s for name %s", old, file, name)
|
|
}
|
|
result[name] = file
|
|
}
|
|
}
|
|
return result, nil
|
|
}
|