Patch for concurrent iterator & others (onto v1.11.6) #386

Closed
roysc wants to merge 1565 commits from v1.11.6-statediff-v5 into master
Showing only changes of commit 68cd0cda4a - Show all commits

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(),
})
}