Skip to content

Commit

Permalink
misc: reverting to old single quotes for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Varun0157 committed Jun 14, 2024
1 parent 2963ffe commit cf753fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/constructCurl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export function getCurlRequest(request: RequestSpec): string {
if (request.httpRequest.headers !== undefined) {
for (const header in request.httpRequest.headers) {
if (header === "user-agent") continue;
curl += ` -H \"${header}: ${request.httpRequest.headers[header]}\"`;
curl += ` -H '${header}: ${request.httpRequest.headers[header]}'`;
}
}

Expand Down

0 comments on commit cf753fe

Please sign in to comment.