From 8b3040ed1b0c1c70e24368ddf52d6866c4b393fd Mon Sep 17 00:00:00 2001 From: TJ Holowaychuk Date: Fri, 29 Jun 2012 13:07:42 -0700 Subject: [PATCH] fix git-pull-request curl body quoting --- bin/git-pull-request | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/git-pull-request b/bin/git-pull-request index 710f6d1..b5ebad3 100755 --- a/bin/git-pull-request +++ b/bin/git-pull-request @@ -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"