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 4665091CE for ; Sat, 2 Jun 2012 10:45:53 +0000 (UTC) Received: (qmail 21694 invoked by uid 500); 2 Jun 2012 10:45:53 -0000 Delivered-To: apmail-jackrabbit-commits-archive@jackrabbit.apache.org Received: (qmail 21507 invoked by uid 500); 2 Jun 2012 10:45:48 -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 21461 invoked by uid 99); 2 Jun 2012 10:45:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 02 Jun 2012 10:45:46 +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; Sat, 02 Jun 2012 10:45:44 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 520102388865; Sat, 2 Jun 2012 10:45:23 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1345480 - /jackrabbit/trunk/check-release.sh Date: Sat, 02 Jun 2012 10:45:23 -0000 To: commits@jackrabbit.apache.org From: reschke@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120602104523.520102388865@eris.apache.org> Author: reschke Date: Sat Jun 2 10:45:22 2012 New Revision: 1345480 URL: http://svn.apache.org/viewvc?rev=1345480&view=rev Log: JCR-3325: fix openssl invocation to pass the filename as parameter instead through stdin (gpg issue remains unpatched) Modified: jackrabbit/trunk/check-release.sh Modified: jackrabbit/trunk/check-release.sh URL: http://svn.apache.org/viewvc/jackrabbit/trunk/check-release.sh?rev=1345480&r1=1345479&r2=1345480&view=diff ============================================================================== --- jackrabbit/trunk/check-release.sh (original) +++ jackrabbit/trunk/check-release.sh Sat Jun 2 10:45:22 2012 @@ -74,7 +74,7 @@ do CHKSUM="----" else A="`cat $f.$tp 2>/dev/null`" - B="`openssl $hash < $f 2>/dev/null | sed 's/.*= *//' `" + B="`openssl $hash $f 2>/dev/null | sed 's/.*= *//' `" if [ "$A" = "$B" ]; then CHKSUM="GOOD (`cat $f.$tp`)"; else CHKSUM="BAD!! : $A not equal to $B"; fi fi echo "$tp : ${CHKSUM}"