From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QNMeb-0000iP-4h for garchives@archives.gentoo.org; Fri, 20 May 2011 10:09:57 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 00DEF1C0B6; Fri, 20 May 2011 10:09:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id C72DB1C0B6 for ; Fri, 20 May 2011 10:09:49 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3E3EC1B406A for ; Fri, 20 May 2011 10:09:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 58F908001E for ; Fri, 20 May 2011 10:09:48 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <6861f7773b2772931f5de6d82108ea0408cd253c.fordfrog@gentoo> Subject: [gentoo-commits] dev/fordfrog:master commit in: scripts/netbeans/ X-VCS-Repository: dev/fordfrog X-VCS-Files: scripts/netbeans/check_binary_lists.sh X-VCS-Directories: scripts/netbeans/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 6861f7773b2772931f5de6d82108ea0408cd253c Date: Fri, 20 May 2011 10:09:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 432e0e58e14ea827bc4b1952d1ea50e4 commit: 6861f7773b2772931f5de6d82108ea0408cd253c Author: Miroslav =C5=A0ulc gentoo org> AuthorDate: Fri May 20 10:08:20 2011 +0000 Commit: Miroslav =C5=A0ulc gentoo org> CommitDate: Fri May 20 10:08:20 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Ddev/fordfrog.git;a= =3Dcommit;h=3D6861f777 netbeans scripts: improved output --- scripts/netbeans/check_binary_lists.sh | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/netbeans/check_binary_lists.sh b/scripts/netbeans/ch= eck_binary_lists.sh index 2706e2a..a77f530 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 =20 -pushd "${NEW_DIR}" +pushd "${NEW_DIR}" >> /dev/null =20 for file in `ls */external/binaries-list`; do RESULT=3D`diff "${OLD_DIR}"/$file $file` =20 if [ -n "${RESULT}" ] ; then echo "${file}" - echo ${RESULT} + diff "${OLD_DIR}"/$file $file fi done =20 -popd +popd >> /dev/null =20 echo "DONE."