mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-08 03:31:59 +02:00
65ffbf1921
* refactor: remove pkg/errors Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * refactor: remove pkg/errors Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
38 lines
916 B
Go
38 lines
916 B
Go
package extrafiles
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/apex/log"
|
|
"github.com/goreleaser/goreleaser/pkg/config"
|
|
"github.com/mattn/go-zglob"
|
|
)
|
|
|
|
// 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) {
|
|
var result = map[string]string{}
|
|
for _, extra := range files {
|
|
if extra.Glob != "" {
|
|
files, err := zglob.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
|
|
}
|
|
var 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
|
|
}
|