mirror of https://github.com/docker/cli.git
Use filepath.Base instead of path.Base
This ensures Windows paths are handled correctly as explained in the path package documentation. Signed-off-by: Mathieu Champlon <mathieu.champlon@docker.com>
This commit is contained in:
parent
0ff5f52051
commit
698ea75c66
|
@ -2,7 +2,7 @@ package kubernetes
|
|||
|
||||
import (
|
||||
"io/ioutil"
|
||||
"path"
|
||||
"path/filepath"
|
||||
"sort"
|
||||
|
||||
"github.com/docker/cli/kubernetes/compose/v1beta2"
|
||||
|
@ -36,7 +36,7 @@ func (s *stack) createFileBasedConfigMaps(configMaps corev1.ConfigMapInterface)
|
|||
continue
|
||||
}
|
||||
|
||||
fileName := path.Base(config.File)
|
||||
fileName := filepath.Base(config.File)
|
||||
content, err := ioutil.ReadFile(config.File)
|
||||
if err != nil {
|
||||
return err
|
||||
|
@ -76,7 +76,7 @@ func (s *stack) createFileBasedSecrets(secrets corev1.SecretInterface) error {
|
|||
continue
|
||||
}
|
||||
|
||||
fileName := path.Base(secret.File)
|
||||
fileName := filepath.Base(secret.File)
|
||||
content, err := ioutil.ReadFile(secret.File)
|
||||
if err != nil {
|
||||
return err
|
||||
|
|
Loading…
Reference in New Issue