1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-16 03:52:12 +02:00

chore: go doc for extrafiles.Find

refs #1535

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
This commit is contained in:
Carlos Alexandro Becker 2020-05-25 15:18:24 -03:00
parent c805451de0
commit 501f092811
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

View File

@ -10,6 +10,7 @@ import (
"github.com/pkg/errors"
)
// 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 {