diff --git a/src/targets/shell/curl.js b/src/targets/shell/curl.js index bedbfcdc4..e8fd516fb 100644 --- a/src/targets/shell/curl.js +++ b/src/targets/shell/curl.js @@ -59,7 +59,7 @@ module.exports = function (source, options) { if (source.postData.text) { code.push( '%s %s', opts.binary ? '--data-binary' : (opts.short ? '-d' : '--data'), - helpers.escape(helpers.quote(source.postData.text)) + helpers.quote(source.postData.text) ) } }