diff options
author | James Magnarelli <jmagnare@gmail.com> | 2012-12-29 21:32:00 -0500 |
---|---|---|
committer | ncanceill <nicolas.canceill@ens-cachan.org> | 2014-05-28 11:19:16 +0200 |
commit | 7bb42fb49a0dcbd0774a0e6efafe766fdfc82268 (patch) | |
tree | f1655538413337f090adc454d5881ff1dfc03658 | |
parent | 6fc241b0d2f4690f7fd00f26eb91045a04c05fbd (diff) | |
download | zsh-7bb42fb49a0dcbd0774a0e6efafe766fdfc82268.tar.gz zsh-7bb42fb49a0dcbd0774a0e6efafe766fdfc82268.tar.bz2 zsh-7bb42fb49a0dcbd0774a0e6efafe766fdfc82268.zip |
Corrected syntax error in github plugin's empty_gh function
-rw-r--r-- | plugins/github/github.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/github/github.plugin.zsh b/plugins/github/github.plugin.zsh index 25b1a1e1b..bd69b1bd5 100644 --- a/plugins/github/github.plugin.zsh +++ b/plugins/github/github.plugin.zsh @@ -40,7 +40,7 @@ fi # # Use this when creating a new repo from scratch. empty_gh() { # [NAME_OF_REPO] - repo = $1 + repo=$1 ghuser=$( git config github.user ) mkdir "$repo" |