From d6e4f85864a1e9b2aadc2e7f47e481242d5e946a Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sun, 4 Jan 2026 12:46:56 +0900 Subject: [PATCH] internal/pkg: ignore typeflag 'g' Signed-off-by: Ophestra --- internal/pkg/tar.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/internal/pkg/tar.go b/internal/pkg/tar.go index c5b3eb3..1483246 100644 --- a/internal/pkg/tar.go +++ b/internal/pkg/tar.go @@ -199,6 +199,10 @@ func (a *tarArtifact) Pathname() (*check.Absolute, error) { } break + case tar.TypeXGlobalHeader: + // ignore + break + default: return DisallowedTypeflagError(typeflag) }