We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a40a54d commit e4869c6Copy full SHA for e4869c6
cmd/bashbrew/cmd-list.go
@@ -2,6 +2,7 @@ package main
2
3
import (
4
"fmt"
5
+ "path"
6
7
"github.com/codegangsta/cli"
8
"github.com/docker-library/go-dockerlibrary/manifest"
@@ -33,7 +34,7 @@ func cmdList(c *cli.Context) error {
33
34
35
if onlyRepos {
36
if r.TagEntry == nil {
- fmt.Printf("%s\n", r.RepoName)
37
+ fmt.Printf("%s\n", path.Join(namespace, r.RepoName))
38
} else {
39
for _, tag := range r.Tags(namespace, uniq, r.TagEntry) {
40
fmt.Printf("%s\n", tag)
0 commit comments