Merge be8a7638c1
into d739948989
This commit is contained in:
commit
9d6406703a
|
@ -9,6 +9,7 @@ import (
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
|
"time"
|
||||||
|
|
||||||
"emperror.dev/errors"
|
"emperror.dev/errors"
|
||||||
"github.com/apex/log"
|
"github.com/apex/log"
|
||||||
|
@ -294,6 +295,14 @@ func (a *Archive) addToArchive(dirfd int, name, relative string, entry ufs.DirEn
|
||||||
|
|
||||||
// Get the tar FileInfoHeader in order to add the file to the archive.
|
// Get the tar FileInfoHeader in order to add the file to the archive.
|
||||||
header, err := tar.FileInfoHeader(s, filepath.ToSlash(target))
|
header, err := tar.FileInfoHeader(s, filepath.ToSlash(target))
|
||||||
|
|
||||||
|
// set to format gnu so 7-zip can read Chinese Filename
|
||||||
|
header.Format = tar.FormatGNU
|
||||||
|
|
||||||
|
// temp workaround for golang write accesstime and changetime into gnu_header‘s prefix.
|
||||||
|
header.AccessTime = time.Time{}
|
||||||
|
header.ChangeTime = time.Time{}
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return errors.WrapIff(err, "failed to get tar#FileInfoHeader for '%s'", name)
|
return errors.WrapIff(err, "failed to get tar#FileInfoHeader for '%s'", name)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user