1
1
Fork 0
mirror of https://github.com/goreleaser/nfpm synced 2024-06-19 10:29:18 +02:00
nfpm/testdata/contents_glob.yaml
Dj Gilcrease c4ae30d749
feat: try to clean up and simplify the file adding interface (#255)
* feat: cleanup and simplify the file adding interface

* docs: update the configuration docs to focus on the new contents format for specifying files

* docs: correct spelling

Co-authored-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>

Co-authored-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2020-12-15 13:47:00 -03:00

10 lines
298 B
YAML

# Configuration file used to unit test enhanced file map
name: "foo"
arch: "amd64"
version: "v1.2.3"
contents:
# These two should be a single glob `./testdata/globtest/**/*.txt`
- src: "./testdata/globtest/**/*.txt"
dst: "/etc/foo/"
- src: "./testdata/globtest/*.txt"
dst: "/etc/foo/"