mirror of
https://github.com/docker/compose.git
synced 2025-07-05 12:54:27 +02:00
Fix test config dir content
Signed-off-by: Mathieu Champlon <mathieu.champlon@docker.com>
This commit is contained in:
parent
709190312c
commit
cffdb69c5e
@ -104,9 +104,9 @@ func newE2eCLI(t *testing.T, binDir string) *E2eCLI {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func dirContents(dir string) []string {
|
func dirContents(dir string) []string {
|
||||||
res := []string{}
|
var res []string
|
||||||
_ = filepath.Walk(dir, func(path string, info os.FileInfo, err error) error {
|
_ = filepath.Walk(dir, func(path string, info os.FileInfo, err error) error {
|
||||||
res = append(res, filepath.Join(dir, path))
|
res = append(res, path)
|
||||||
return nil
|
return nil
|
||||||
})
|
})
|
||||||
return res
|
return res
|
||||||
|
Loading…
x
Reference in New Issue
Block a user