mirror of
https://github.com/containers/podman.git
synced 2025-05-21 17:16:22 +08:00

Based on WSL2 9p support: remaps windows paths to /mnt/<drive> locations for both podman and Docker API clients. Signed-off-by: Jason T. Greene <jason.greene@redhat.com>
31 lines
508 B
Go
31 lines
508 B
Go
package specgen
|
|
|
|
import (
|
|
"github.com/sirupsen/logrus"
|
|
"os"
|
|
"path/filepath"
|
|
)
|
|
|
|
func shouldResolveUnixWinVariant(path string) bool {
|
|
return true
|
|
}
|
|
|
|
func shouldResolveWinPaths() bool {
|
|
return true
|
|
}
|
|
|
|
func resolveRelativeOnWindows(path string) string {
|
|
ret, err := filepath.Abs(path)
|
|
if err != nil {
|
|
logrus.Debugf("problem resolving possible relative path %q: %s", path, err.Error())
|
|
return path
|
|
}
|
|
|
|
return ret
|
|
}
|
|
|
|
func winPathExists(path string) bool {
|
|
_, err := os.Stat(path)
|
|
return err == nil
|
|
}
|