Skip to content

Commit

Permalink
Merge pull request ohmyzsh#494 from EspadaV8/master
Browse files Browse the repository at this point in the history
Fixed an issue where the SVN plugin would mark a folder as being dirty when there was an svn:external set.
  • Loading branch information
robbyrussell committed Jul 28, 2011
2 parents 4ff4558 + 7b25a3f commit dee8171
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/svn/svn.plugin.zsh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function svn_prompt_info {
if [[ -d .svn ]]; then
if [ in_svn ]; then
echo "$ZSH_PROMPT_BASE_COLOR$ZSH_THEME_SVN_PROMPT_PREFIX\
$ZSH_THEME_REPO_NAME_COLOR$(svn_get_repo_name)$ZSH_PROMPT_BASE_COLOR$ZSH_THEME_SVN_PROMPT_SUFFIX$ZSH_PROMPT_BASE_COLOR$(svn_dirty)$ZSH_PROMPT_BASE_COLOR"
fi
Expand Down Expand Up @@ -28,7 +28,7 @@ function svn_get_rev_nr {

function svn_dirty_choose {
if [ in_svn ]; then
s=$(svn status 2>/dev/null)
s=$(svn status|grep -E '^\s*[ACDIM!?L]' 2>/dev/null)
if [ $s ]; then
echo $1
else
Expand Down

0 comments on commit dee8171

Please sign in to comment.