diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-03-11 11:43:03 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-11 11:43:03 -0700 |
commit | 7038cac53c4c93cd088fdbb097eee8d45494c3b8 (patch) | |
tree | 958df194bdd61cc209efa0480ea52634149f6250 /cmd/podman/import.go | |
parent | b8863b260a7885981def2b02b5acc7c9a209e0c6 (diff) | |
parent | 651520389d239f335248a27595d39a815ef95238 (diff) | |
download | podman-7038cac53c4c93cd088fdbb097eee8d45494c3b8.tar.gz podman-7038cac53c4c93cd088fdbb097eee8d45494c3b8.tar.bz2 podman-7038cac53c4c93cd088fdbb097eee8d45494c3b8.zip |
Merge pull request #2578 from baude/movecreate
preparation for remote-client create container
Diffstat (limited to 'cmd/podman/import.go')
-rw-r--r-- | cmd/podman/import.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/import.go b/cmd/podman/import.go index c3351ab1b..f3fb7c988 100644 --- a/cmd/podman/import.go +++ b/cmd/podman/import.go @@ -4,6 +4,7 @@ import ( "fmt" "github.com/containers/libpod/cmd/podman/cliconfig" + "github.com/containers/libpod/cmd/podman/shared/parse" "github.com/containers/libpod/pkg/adapter" "github.com/pkg/errors" "github.com/spf13/cobra" @@ -67,7 +68,7 @@ func importCmd(c *cliconfig.ImportValues) error { return errors.Errorf("too many arguments. Usage TARBALL [REFERENCE]") } - if err := validateFileName(source); err != nil { + if err := parse.ValidateFileName(source); err != nil { return err } |