From 19a617eaab02c27b0975333bb2c1db0998ce4d59 Mon Sep 17 00:00:00 2001 From: Brent Baude Date: Wed, 24 Aug 2022 09:28:39 -0500 Subject: Allow colons in windows file paths the `podman save` command was failing on windows due to the use of a colon between the drive letter and first directory. the check was intended for Linux and not windows. Fixes #15247 [NO NEW TESTS NEEDED] Signed-off-by: Brent Baude --- cmd/podman/parse/parse.go | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 cmd/podman/parse/parse.go (limited to 'cmd/podman/parse/parse.go') diff --git a/cmd/podman/parse/parse.go b/cmd/podman/parse/parse.go new file mode 100644 index 000000000..47db066d3 --- /dev/null +++ b/cmd/podman/parse/parse.go @@ -0,0 +1,18 @@ +//go:build !windows +// +build !windows + +package parse + +import ( + "fmt" + "strings" +) + +// ValidateFileName returns an error if filename contains ":" +// as it is currently not supported +func ValidateFileName(filename string) error { + if strings.Contains(filename, ":") { + return fmt.Errorf("invalid filename (should not contain ':') %q", filename) + } + return nil +} -- cgit v1.2.3-54-g00ecf