Author: nickboldt
Date: 2010-04-27 11:29:08 -0400 (Tue, 27 Apr 2010)
New Revision: 21742
Modified:
branches/modular_build/svnignore.sh
Log:
tweak order and output
Modified: branches/modular_build/svnignore.sh
===================================================================
--- branches/modular_build/svnignore.sh 2010-04-27 15:28:56 UTC (rev 21741)
+++ branches/modular_build/svnignore.sh 2010-04-27 15:29:08 UTC (rev 21742)
@@ -10,7 +10,7 @@
dir="."; if [[ $1 ]]; then dir=$1; fi
for p in com org net; do
- for f in $(find $dir -mindepth 2 -type d -name "${p}.*"); do
+ for f in $(find $dir -mindepth 2 -type d -name "${p}.*" | sort); do
pushd $f 2>&1 >/dev/null
echo $f
svn up --accept 'theirs-full'
@@ -22,6 +22,9 @@
rm -fr $tmpfile
svn diff $dir
+echo ""
+echo "==================================================================="
+echo ""
echo "Pending changes:"
svn stat $dir
Show replies by date