It isn't a command, it just takes the entrypoint from the `main` field and uploads that bundle
It isn't a command, it just takes the entrypoint from the
main field and uploads that bundlemainwrangler/workerdResponse.redirect() does that automatically append any query params that were in the original request?redirect(). So no, you'll need to add those manually.Response.redirect("/foo") will go to "/foo" with no query params.my.domain.com?utmtest=123 however the location header in the response has that utmtest doubled up.

redirectRequest? Can you share more code? I would guess you're passing a string as url that already contains the search params, but then also passing them as search, resulting in them appearing twice
workerdResponse.redirect()redirect()Response.redirect("/foo")my.domain.com?utmtest=123redirectRequestsearchfirmwareBin = await env.R2.get(decodeURI(key));
let { readable, writable } = new FixedLengthStream(175104);
firmwareBin.body.pipeTo(writable);
return new Response(readable, firmwareBin);