diff options
author | Drarok Ithaqua <github@catchall.drarok.com> | 2012-11-27 12:03:51 +0000 |
---|---|---|
committer | Drarok Ithaqua <github@catchall.drarok.com> | 2012-11-27 12:03:51 +0000 |
commit | 79e620c392393f254d9614b18963af1c9ac234e7 (patch) | |
tree | edd3b6b002cacc9e38b66929ae3e466af6ac3196 | |
parent | d750e7d9e3b7d04bafc93211f7db4c607ecea19b (diff) | |
download | zsh-79e620c392393f254d9614b18963af1c9ac234e7.tar.gz zsh-79e620c392393f254d9614b18963af1c9ac234e7.tar.bz2 zsh-79e620c392393f254d9614b18963af1c9ac234e7.zip |
Whitespace cleanup.
-rw-r--r-- | plugins/svn/svn.plugin.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/svn/svn.plugin.zsh b/plugins/svn/svn.plugin.zsh index bd2767e3e..142ac3bd3 100644 --- a/plugins/svn/svn.plugin.zsh +++ b/plugins/svn/svn.plugin.zsh @@ -15,7 +15,7 @@ function in_svn() { function svn_get_repo_name { if [ $(in_svn) ]; then svn info | sed -n 's/Repository\ Root:\ .*\///p' | read SVN_ROOT - + svn info | sed -n "s/URL:\ .*$SVN_ROOT\///p" fi } @@ -31,7 +31,7 @@ function svn_dirty_choose { svn status 2> /dev/null | grep -Eq '^\s*[ACDIM!?L]' if [ $pipestatus[-1] -ne 0 ]; then echo $1 - else + else echo $2 fi fi |