Merge pull request #1556 from ulyssessouza/config-volumes

Fix volume names to print simple volume names
This commit is contained in:
Nicolas De loof 2021-04-16 08:57:44 +02:00 committed by GitHub
commit cd437d13f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -170,8 +170,8 @@ func runVolumes(opts convertOptions) error {
if err != nil {
return err
}
for _, v := range project.Volumes {
fmt.Println(v.Name)
for n := range project.Volumes {
fmt.Println(n)
}
return nil
}