Skip to content

Commit cee9fad

Browse files
committed
fix(cmd/tracerunner): program path reuse
Signed-off-by: Lorenzo Fontana <[email protected]>
1 parent 4108ab0 commit cee9fad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cmd/tracerunner.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ func (o *TraceRunnerOptions) Run() error {
8787
}
8888
}
8989

90-
c := exec.Command(o.bpftraceBinaryPath, o.programPath)
90+
c := exec.Command(o.bpftraceBinaryPath, programPath)
9191
c.Stdout = os.Stdout
9292
c.Stdin = os.Stdin
9393
c.Stderr = os.Stderr

0 commit comments

Comments
 (0)