From 6861f7773b2772931f5de6d82108ea0408cd253c Mon Sep 17 00:00:00 2001 From: Miroslav Ć ulc Date: Fri, 20 May 2011 12:08:20 +0200 Subject: netbeans scripts: improved output --- scripts/netbeans/check_binary_lists.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts') diff --git a/scripts/netbeans/check_binary_lists.sh b/scripts/netbeans/check_binary_lists.sh index 2706e2a15..a77f5307b 100755 --- a/scripts/netbeans/check_binary_lists.sh +++ b/scripts/netbeans/check_binary_lists.sh @@ -18,17 +18,17 @@ if [ ! -d "${NEW_DIR}" ] ; then exit 1 fi -pushd "${NEW_DIR}" +pushd "${NEW_DIR}" >> /dev/null for file in `ls */external/binaries-list`; do RESULT=`diff "${OLD_DIR}"/$file $file` if [ -n "${RESULT}" ] ; then echo "${file}" - echo ${RESULT} + diff "${OLD_DIR}"/$file $file fi done -popd +popd >> /dev/null echo "DONE." -- cgit v1.2.3-65-gdbad