fix: ignore pax header "file"s in chart validation

Signed-off-by: Geoff Baskwill <me@geoffbaskwill.ca>
pull/5198/head
Geoff Baskwill 6 years ago
parent af4c14b593
commit 05a365358f

@ -93,6 +93,12 @@ func loadArchiveFiles(in io.Reader) ([]*BufferedFile, error) {
continue
}
switch hd.Typeflag {
// We don't want to process these extension header files.
case tar.TypeXGlobalHeader, tar.TypeXHeader:
continue
}
// Archive could contain \ if generated on Windows
delimiter := "/"
if strings.ContainsRune(hd.Name, '\\') {

Loading…
Cancel
Save