From db69dcf0be0c1be4e3187027fa4199538013e76d Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 4 Jun 2026 18:37:07 +0900 Subject: internal/pkg: remove tar built-in decompressor This is replaced by decompressArtifact and is no longer necessary. Signed-off-by: Ophestra --- internal/rosa/go.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/rosa/go.go') diff --git a/internal/rosa/go.go b/internal/rosa/go.go index fbee360b..26b99929 100644 --- a/internal/rosa/go.go +++ b/internal/rosa/go.go @@ -16,7 +16,7 @@ func (t Toolchain) newGo( return t.NewPackage("go", version, newTar( "https://go.dev/dl/go"+version+".src.tar.gz", checksum, - pkg.TarGzip, + pkg.Gzip, ), &PackageAttr{ EnterSource: true, Env: slices.Concat([]string{ @@ -79,7 +79,7 @@ func init() { bootstrapEarly = []pkg.Artifact{t.NewPackage("go", "1.4-bootstrap", newTar( "https://dl.google.com/go/go1.4-bootstrap-20171003.tar.gz", "8o9JL_ToiQKadCTb04nvBDkp8O1xiWOolAxVEqaTGodieNe4lOFEjlOxN3bwwe23", - pkg.TarGzip, + pkg.Gzip, ), &PackageAttr{ EnterSource: true, Env: []string{ -- cgit v1.3.1