Merge pull request #25290 from karalabe/tar-archive-folder-time

internal/build: add a timestamp to the tar archive folder
This commit is contained in:
Péter Szilágyi
2022-07-12 14:39:05 +03:00
committed by GitHub
+2
View File
@@ -25,6 +25,7 @@ import (
"os"
"path/filepath"
"strings"
"time"
)
type Archive interface {
@@ -159,6 +160,7 @@ func (a *TarballArchive) Directory(name string) error {
Name: a.dir,
Mode: 0755,
Typeflag: tar.TypeDir,
ModTime: time.Now(),
})
}