From b83316cfe5944fa50eea37d395b35a421dabd1b7 Mon Sep 17 00:00:00 2001 From: Michael Nikitochkin Date: Mon, 17 Sep 2012 22:58:04 +0300 Subject: [PATCH] Fixed bug in sending pr for github. --- plugins/github/github.plugin.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/github/github.plugin.zsh b/plugins/github/github.plugin.zsh index 7bae3e2c8..47fd04094 100644 --- a/plugins/github/github.plugin.zsh +++ b/plugins/github/github.plugin.zsh @@ -89,8 +89,8 @@ pull_request() { issue="" fi - echo "hub pull-request $issue -b $organization:master -h $organization:$(current_branch)" - hub pull-request $issue -b $organization:master -h $organization:$(current_branch) + echo "hub pull-request $(echo $issue) -b $organization:master -h $organization:$(current_branch)" + hub pull-request $(echo $issue) -b $organization:master -h $organization:$(current_branch) } # End Functions #############################################################