From: thierry Date: Thu, 8 Oct 2009 12:54:48 +0000 (+0000) Subject: use new syntax X-Git-Tag: foo~239 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=c7e77c0e856de9c1b21463546c9d80bc20a2084a;hp=aa7f519e72c97279b5096339342b6072a67b145a;p=infrastructure.git use new syntax --- diff --git a/scripts/all-modules.sh b/scripts/all-modules.sh index c3e3e81..b5cd366 100755 --- a/scripts/all-modules.sh +++ b/scripts/all-modules.sh @@ -51,16 +51,20 @@ function do_diff () { mkdir -p $out_dir - ( echo $name ; \ - date ; \ - $build_dir/module-diff -a -o ; \ - date ) &> $out_tmp - - ( echo 'WARNINGS (if any)' ; \ - egrep 'was not found|Skipping failed' $out_tmp ; - cat $out_tmp ) > $out_file +### older syntax was messy +# ( echo $name ; \ +# date ; \ +# $build_dir/module-diff -a -o ; \ +# date ) &> $out_tmp +# +# ( echo 'WARNINGS (if any)' ; \ +# egrep 'was not found|Skipping failed' $out_tmp ; +# cat $out_tmp ) > $out_file +# +# rm -f $out_tmp + + $build_dir/module-diff -a -W $name &> $out_file - rm -f $out_tmp } function usage () {