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.
2 parents 82266fb + a8c526f commit aa27889Copy full SHA for aa27889
Library/Homebrew/bundle/go_dumper.rb
@@ -37,7 +37,14 @@ def self.packages
37
# Extract the package path (second field after splitting by tab)
38
# The line format is: "\tpath\tgithub.com/user/repo"
39
parts = path_line.split("\t")
40
- parts[2]&.strip if parts.length >= 3
+ path = parts[2]&.strip if parts.length >= 3
41
+
42
+ # `command-line-arguments` is a dummy package name for binaries built
43
+ # from a list of source files instead of a specific package name.
44
+ # https://github.com/golang/go/issues/36043
45
+ next if path == "command-line-arguments"
46
47
+ path
48
end.compact.uniq
49
else
50
[]
0 commit comments