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 0135673 commit 818df5fCopy full SHA for 818df5f
cmd/bashbrew/cmd-deps.go
@@ -3,6 +3,7 @@ package main
3
import (
4
"fmt"
5
"path"
6
+ "strings"
7
8
"github.com/codegangsta/cli"
9
"pault.ag/go/topsort"
@@ -128,7 +129,7 @@ func cmdFamily(parents bool, c *cli.Context) error {
128
129
for _, node := range depthNodes.nodes {
130
seenKey := node.Name
131
if uniq {
- seenKey = tagRepo + ":" + node.Value.(*manifest.Manifest2822Entry).Tags[0]
132
+ seenKey = seenKey[:strings.Index(seenKey, ":")+1] + node.Value.(*manifest.Manifest2822Entry).Tags[0]
133
}
134
if seen[seenKey] {
135
continue
0 commit comments