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:
Mathieu Champlon 2018-05-07 15:35:20 +02:00
parent 0ff5f52051
commit 698ea75c66
1 changed files with 3 additions and 3 deletions

View File

@ -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