Skip to content

Commit d55ea78

Browse files
Fix sending body on GET request
1 parent a2bca00 commit d55ea78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/api/api.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func (d *Depot) GetBuilder(buildID string, platform string) (*BuilderResponse, e
5858
"GET",
5959
fmt.Sprintf("%s/api/internal/cli/builds/%s/platform/%s", d.BaseURL, buildID, platform),
6060
d.token,
61-
map[string]string{},
61+
nil,
6262
)
6363
}
6464

0 commit comments

Comments
 (0)