Skip to content

Commit 0a9da1c

Browse files
committed
fixes a bug where pyroscope thinks a spy is not supported when it is
1 parent 4307cee commit 0a9da1c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/exec/cli.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -112,11 +112,11 @@ func performChecks(spyName string) error {
112112
}
113113
}
114114

115-
if stringsContains(spy.SupportedSpies, spyName) {
115+
if !stringsContains(spy.SupportedSpies, spyName) {
116116
supportedSpies := supportedSpiesWithoutGospy()
117117
return fmt.Errorf(
118118
"Spy \"%s\" is not supported. Available spies are: %s\n%s",
119-
color.BlueString("spyName"),
119+
color.BlueString(spyName),
120120
strings.Join(supportedSpies, ","),
121121
armMessage(),
122122
)

0 commit comments

Comments
 (0)