1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-17 20:47:50 +02:00

remove: TODOs that dont need to be fixed

Closss #490
This commit is contained in:
Carlos Alexandro Becker 2017-12-29 15:10:09 -02:00
parent 98b70f460e
commit b61aec7a1c
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940
2 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ func doRun(ctx *context.Context) error {
).GroupByPlatform() {
sem <- true
format := format
arch := linux.Arch(platform) // TODO: could probably pass artifact.Goarch here
arch := linux.Arch(platform)
artifacts := artifacts
g.Go(func() error {
defer func() {

View File

@ -89,7 +89,7 @@ func (Pipe) Run(ctx *context.Context) error {
artifact.ByType(artifact.Binary),
),
).GroupByPlatform() {
arch := linux.Arch(platform) // TODO: could use artifact.goarch here
arch := linux.Arch(platform)
binaries := binaries
g.Go(func() error {
return create(ctx, arch, binaries)