fix git-pull-request curl body quoting

This commit is contained in:
TJ Holowaychuk 2012-06-29 13:07:42 -07:00
parent 604b9f3c58
commit 8b3040ed1b

View file

@ -49,5 +49,5 @@ echo
# create pull request
body=$(json $title $body $branch)
curl -u "$user" https://api.github.com/repos/$project/pulls -d $body
curl -u "$user" "https://api.github.com/repos/$project/pulls" -d "$body"