1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-06 03:13:48 +02:00
goreleaser/pkg/archive/targz/targz.go
Carlos Alexandro Becker c08bb7f24c
refactor: order methods
Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
2021-08-31 23:19:10 -03:00

42 lines
804 B
Go

// Package targz implements the Archive interface providing tar.gz archiving
// and compression.
package targz
import (
"compress/gzip"
"io"
"github.com/goreleaser/goreleaser/pkg/archive/tar"
"github.com/goreleaser/goreleaser/pkg/config"
)
// Archive as tar.gz.
type Archive struct {
gw *gzip.Writer
tw *tar.Archive
}
// New tar.gz archive.
func New(target io.Writer) Archive {
// the error will be nil since the compression level is valid
gw, _ := gzip.NewWriterLevel(target, gzip.BestCompression)
tw := tar.New(gw)
return Archive{
gw: gw,
tw: &tw,
}
}
// Close all closeables.
func (a Archive) Close() error {
if err := a.tw.Close(); err != nil {
return err
}
return a.gw.Close()
}
// Add file to the archive.
func (a Archive) Add(f config.File) error {
return a.tw.Add(f)
}