Remove whitespace [Gun.io WhitespaceBot]

This commit is contained in:
Gun.io Whitespace Robot 2011-10-28 19:20:41 -04:00
commit c42205ffac
23 changed files with 72 additions and 72 deletions

View file

@ -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" | sed "s/\/.*$//"
fi
}
@ -29,9 +29,9 @@ function svn_get_rev_nr {
function svn_dirty_choose {
if [ in_svn ]; then
s=$(svn status|grep -E '^\s*[ACDIM!?L]' 2>/dev/null)
if [ $s ]; then
if [ $s ]; then
echo $1
else
else
echo $2
fi
fi