Return-Path: X-Original-To: apmail-jackrabbit-commits-archive@www.apache.org Delivered-To: apmail-jackrabbit-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7EE02EFD2 for ; Wed, 23 Jan 2013 13:24:57 +0000 (UTC) Received: (qmail 1409 invoked by uid 500); 23 Jan 2013 13:24:57 -0000 Delivered-To: apmail-jackrabbit-commits-archive@jackrabbit.apache.org Received: (qmail 1261 invoked by uid 500); 23 Jan 2013 13:24:54 -0000 Mailing-List: contact commits-help@jackrabbit.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@jackrabbit.apache.org Delivered-To: mailing list commits@jackrabbit.apache.org Received: (qmail 1234 invoked by uid 99); 23 Jan 2013 13:24:54 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Jan 2013 13:24:54 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Jan 2013 13:24:52 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 779892388900; Wed, 23 Jan 2013 13:24:32 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1437384 - /jackrabbit/trunk/check-release.sh Date: Wed, 23 Jan 2013 13:24:32 -0000 To: commits@jackrabbit.apache.org From: jukka@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130123132432.779892388900@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jukka Date: Wed Jan 23 13:24:32 2013 New Revision: 1437384 URL: http://svn.apache.org/viewvc?rev=1437384&view=rev Log: 2.5.3: Ignore whitespace (most notably EOLs) when diffing svn and zip sources Modified: jackrabbit/trunk/check-release.sh Modified: jackrabbit/trunk/check-release.sh URL: http://svn.apache.org/viewvc/jackrabbit/trunk/check-release.sh?rev=1437384&r1=1437383&r2=1437384&view=diff ============================================================================== --- jackrabbit/trunk/check-release.sh (original) +++ jackrabbit/trunk/check-release.sh Wed Jan 23 13:24:32 2013 @@ -112,7 +112,7 @@ unzip -q "$WORKDIR/$VERSION/jackrabbit-$ ZIPTAGDIR="$ZIPTAG/jackrabbit-$VERSION" echo "[INFO] Comparing sources, please wait..." -DIFFOUT=`diff -r "$SVNTAGDIR" "$ZIPTAGDIR"` +DIFFOUT=`diff -b -r "$SVNTAGDIR" "$ZIPTAGDIR"` if [ -n "$DIFFOUT" ] then echo "[ERROR] Found some differences!"