Skip to content

Commit a014335

Browse files
committed
feat: support --path
1 parent f3265f4 commit a014335

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

pkg/cmd/buildtargetoutput.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,9 @@ func handleBuildsTargetOutputsRetrieve(ctx context.Context, cmd *cli.Command) er
100100
Type: stainless.BuildTargetOutputGetParamsType(outputType),
101101
Output: stainless.BuildTargetOutputGetParamsOutput(outputFormat),
102102
}
103+
if cmd.IsSet("path") {
104+
params.Path = stainless.String(cmd.String("path"))
105+
}
103106
options := []option.RequestOption{}
104107
if cmd.Bool("debug") {
105108
options = append(options, debugMiddlewareOption)

0 commit comments

Comments
 (0)