1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

fix: add missing backslashes to curl command

This commit is contained in:
Thomas Heartman 2022-02-10 16:10:53 +01:00
parent 9998e4cd63
commit a125ea10e8

View File

@ -39,7 +39,7 @@ ${prettyPayload}
{`
curl -H "Content-Type: application/json" \\
-H "Authorization: <API-token>" \\
-X ${verbUpper}
-X ${verbUpper} \\
-d '${prettyPayload}' \\
<unleash-url>/${url}
`.trim()}