summaryrefslogtreecommitdiff
path: root/pkg/copy/copy.go
diff options
context:
space:
mode:
authorValentin Rothberg <rothberg@redhat.com>2020-12-08 16:18:49 +0100
committerValentin Rothberg <rothberg@redhat.com>2020-12-09 12:03:00 +0100
commitc2a5011c0d65cfd6c1ab5d6eef9778551ed56860 (patch)
treeb27e3e1c376c7e648ca51a720eb80de506101d4f /pkg/copy/copy.go
parent8472efdbd1efcb4eea9872baf56e2473a0dd970f (diff)
downloadpodman-c2a5011c0d65cfd6c1ab5d6eef9778551ed56860.tar.gz
podman-c2a5011c0d65cfd6c1ab5d6eef9778551ed56860.tar.bz2
podman-c2a5011c0d65cfd6c1ab5d6eef9778551ed56860.zip
archive: move stat-header handling into copy package
Move handling the stat header into `pkg/copy`. All copy-related should ideally be located in this package to increase locality and reduce scattering where possible. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'pkg/copy/copy.go')
-rw-r--r--pkg/copy/copy.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/pkg/copy/copy.go b/pkg/copy/copy.go
index 0e68eb450..3993b532e 100644
--- a/pkg/copy/copy.go
+++ b/pkg/copy/copy.go
@@ -114,7 +114,6 @@ func enforceCopyRules(source, destination *CopyItem) error {
return nil
}
- // Source is a *stream*.
if source.info.IsStream {
if !(destination.info.IsDir || destination.info.IsStream) {
return errors.New("destination must be a directory or stream when copying from a stream")