1
1
mirror of https://github.com/goreleaser/nfpm synced 2024-11-19 07:34:48 +01:00
nfpm/Gopkg.toml
tympanix e7c7c8342b feat: File globs using mattn/go-zglob library
Added file globs to deb and rpm packager. Since the destination for
a glob can not be a single file, the files collected by the glob are
stored in: join(dst, trim(lcp(src), src)) (read: lcp = longest common
prefix). Thereby the longest common prefix is removed from every path in
the globbed files and joined with the destination path. Implementation
is backwards compatible (i.e. non-globs will work as before)
2018-03-10 23:49:01 +01:00

24 lines
408 B
INI

[prune]
go-tests = true
unused-packages = true
[[constraint]]
name = "github.com/alecthomas/kingpin"
version = "2.2.6"
[[constraint]]
branch = "master"
name = "github.com/blakesmith/ar"
[[constraint]]
branch = "v1"
name = "gopkg.in/yaml.v1"
[[constraint]]
name = "github.com/stretchr/testify"
version = "1.2.1"
[[constraint]]
branch = "master"
name = "github.com/mattn/go-zglob"