Module: tools Branch: master Commit: aa8bab7c97717a930f84a154af6e206883a24572 URL: http://source.winehq.org/git/tools.git/?a=commit;h=aa8bab7c97717a930f84a154a... Author: Mikolaj Zalewski <mikolajz(a)tygrys.dom> Date: Sun Mar 2 21:57:54 2008 +0100 store new languages in the run log --- scripts/Master.sh | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/scripts/Master.sh b/scripts/Master.sh index adcd046..a618b9d 100755 --- a/scripts/Master.sh +++ b/scripts/Master.sh @@ -49,7 +49,11 @@ find $SOURCEROOT/ -name Makefile.in -exec ./checkmakefile.pl \{\} \; ./summary.pl "$WORKDIR" # Check for a new languages -ls $WORKDIR/new-langs +for i in $WORKDIR/new-langs/*; do + if [ -f "$i" ]; then + echo "note: New language:" `basename "$i"` | tee -a $WORKDIR/run.log + fi +done # Show any changes in the log diff -u $WORKDIR/run.log.old $WORKDIR/run.log