|
|
@@ -1,6 +1,39 @@
|
|
|
+Index: src/github.com/docker/cli/cli/config/credentials/default_store_unsupported.go
|
|
|
+--- src/github.com/docker/cli/cli/config/credentials/default_store_unsupported.go.orig 2017-09-27 20:56:28.000000000 +0200
|
|
|
++++ src/github.com/docker/cli/cli/config/credentials/default_store_unsupported.go 2017-09-27 21:08:05.653915000 +0200
|
|
|
+@@ -1,4 +1,4 @@
|
|
|
+-// +build !windows,!darwin,!linux
|
|
|
++// +build !windows,!darwin,!linux,!freebsd
|
|
|
+
|
|
|
+ package credentials
|
|
|
+
|
|
|
+Index: src/github.com/docker/cli/vendor/github.com/docker/docker/pkg/archive/archive_unix.go
|
|
|
+--- src/github.com/docker/cli/vendor/github.com/docker/docker/pkg/archive/archive_unix.go.orig 2017-09-27 20:57:07.000000000 +0200
|
|
|
++++ src/github.com/docker/cli/vendor/github.com/docker/docker/pkg/archive/archive_unix.go 2017-09-27 21:08:05.654068000 +0200
|
|
|
+@@ -62,7 +62,7 @@
|
|
|
+ s, ok := stat.(*syscall.Stat_t)
|
|
|
+
|
|
|
+ if ok {
|
|
|
+- inode = s.Ino
|
|
|
++ inode = uint64(s.Ino)
|
|
|
+ }
|
|
|
+
|
|
|
+ return
|
|
|
+Index: src/github.com/docker/cli/vendor/github.com/docker/docker/pkg/archive/changes_unix.go
|
|
|
+--- src/github.com/docker/cli/vendor/github.com/docker/docker/pkg/archive/changes_unix.go.orig 2017-09-27 20:57:07.000000000 +0200
|
|
|
++++ src/github.com/docker/cli/vendor/github.com/docker/docker/pkg/archive/changes_unix.go 2017-09-27 21:08:28.640616000 +0200
|
|
|
+@@ -29,7 +29,7 @@
|
|
|
+ }
|
|
|
+
|
|
|
+ func getIno(fi os.FileInfo) uint64 {
|
|
|
+- return fi.Sys().(*syscall.Stat_t).Ino
|
|
|
++ return uint64(fi.Sys().(*syscall.Stat_t).Ino)
|
|
|
+ }
|
|
|
+
|
|
|
+ func hasHardlinks(fi os.FileInfo) bool {
|
|
|
Index: src/github.com/docker/cli/vendor/github.com/tonistiigi/fsutil/walker_unix.go
|
|
|
---- src/github.com/docker/cli/vendor/github.com/tonistiigi/fsutil/walker_unix.go.orig 2017-08-06 18:30:15.000000000 +0200
|
|
|
-+++ src/github.com/docker/cli/vendor/github.com/tonistiigi/fsutil/walker_unix.go 2017-08-06 18:42:25.220616000 +0200
|
|
|
+--- src/github.com/docker/cli/vendor/github.com/tonistiigi/fsutil/walker_unix.go.orig 2017-09-27 20:56:41.000000000 +0200
|
|
|
++++ src/github.com/docker/cli/vendor/github.com/tonistiigi/fsutil/walker_unix.go 2017-09-27 21:08:05.654193000 +0200
|
|
|
@@ -41,7 +41,7 @@
|
|
|
stat.Devminor = int64(minor(uint64(s.Rdev)))
|
|
|
}
|