Skip to content

Commit 43f6369

Browse files
gschierdarrenjennings
authored andcommitted
Don't escape curl data
1 parent f19f561 commit 43f6369

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/targets/shell/curl.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ module.exports = function (source, options) {
6565
} else {
6666
code.push(
6767
'%s %s', opts.binary ? '--data-binary' : (opts.short ? '-d' : '--data'),
68-
helpers.escape(helpers.quote(source.postData.text))
68+
helpers.quote(source.postData.text)
6969
)
7070
}
7171
break

0 commit comments

Comments
 (0)