summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/netbeans/check_binary_lists.sh')
-rwxr-xr-xscripts/netbeans/check_binary_lists.sh6
1 files changed, 3 insertions, 3 deletions
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."