Skip to content

Commit

Permalink
The original SVN pluging would mark a folder as dirty if there was an
Browse files Browse the repository at this point in the history
svn:external set and the output of 'svn status' returned the check for
the external. E.g.

$ svn st
X       Application

Performing status on external item at 'Application'

Shouldn't be marked as being dirty. By grepping for only the valid
output for what should be class as dirty, it won't return false
positives.
  • Loading branch information
Andrew Smith committed Jul 24, 2011
1 parent 3cb33fc commit 7b25a3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/svn/svn.plugin.zsh
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function svn_get_rev_nr {


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

0 comments on commit 7b25a3f

Please sign in to comment.