From 91a7f8bd0d5fc9b554e5d04788935f48605655c0 Mon Sep 17 00:00:00 2001 From: 5schatten Date: Wed, 4 Sep 2019 12:10:01 +0200 Subject: [PATCH] docker: added patch to fix too many arguments in call to filesync.CopyFileWriter - reverts https://github.com/docker/docker-ce/commit/1fbc98bc6a3c732f999d98cd73d86b3a3a97039c#diff-4493cae342788d4a8f2bdbce1a2d69fc --- ...rguments-in-call-to-filesync.CopyFileWriter.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/addons/service/docker/patches/docker-100.02-fix-too-many-arguments-in-call-to-filesync.CopyFileWriter.patch diff --git a/packages/addons/service/docker/patches/docker-100.02-fix-too-many-arguments-in-call-to-filesync.CopyFileWriter.patch b/packages/addons/service/docker/patches/docker-100.02-fix-too-many-arguments-in-call-to-filesync.CopyFileWriter.patch new file mode 100644 index 0000000000..0ae2380d66 --- /dev/null +++ b/packages/addons/service/docker/patches/docker-100.02-fix-too-many-arguments-in-call-to-filesync.CopyFileWriter.patch @@ -0,0 +1,12 @@ +--- a/components/engine/vendor/github.com/moby/buildkit/exporter/tar/export.go ++++ b/components/engine/vendor/github.com/moby/buildkit/exporter/tar/export.go +@@ -147,7 +147,7 @@ + fs = d.FS + } + +- w, err := filesync.CopyFileWriter(ctx, nil, e.caller) ++ w, err := filesync.CopyFileWriter(ctx, e.caller) + if err != nil { + return nil, err + } +