From commits-return-7023-apmail-activemq-commits-archive=activemq.apache.org@activemq.apache.org Wed Aug 29 07:34:16 2007 Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 26411 invoked from network); 29 Aug 2007 07:34:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 29 Aug 2007 07:34:15 -0000 Received: (qmail 1650 invoked by uid 500); 29 Aug 2007 07:34:11 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 1591 invoked by uid 500); 29 Aug 2007 07:34:11 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 1580 invoked by uid 99); 29 Aug 2007 07:34:11 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Aug 2007 00:34:11 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Aug 2007 07:35:00 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 40A1F1A9832; Wed, 29 Aug 2007 00:33:42 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r570668 - /activemq/scripts/activemq-snapshots-clean.sh Date: Wed, 29 Aug 2007 07:33:42 -0000 To: commits@activemq.apache.org From: jstrachan@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20070829073342.40A1F1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jstrachan Date: Wed Aug 29 00:33:41 2007 New Revision: 570668 URL: http://svn.apache.org/viewvc?rev=570668&view=rev Log: Made the clean snapshots script ignore directories Modified: activemq/scripts/activemq-snapshots-clean.sh Modified: activemq/scripts/activemq-snapshots-clean.sh URL: http://svn.apache.org/viewvc/activemq/scripts/activemq-snapshots-clean.sh?rev=570668&r1=570667&r2=570668&view=diff ============================================================================== --- activemq/scripts/activemq-snapshots-clean.sh (original) +++ activemq/scripts/activemq-snapshots-clean.sh Wed Aug 29 00:33:41 2007 @@ -1,5 +1,5 @@ #!/usr/local/bin/bash -find /www/people.apache.org/repo/m2-snapshot-repository/org/apache/activemq/ -mtime +7 -exec rm {} \; -find /www/people.apache.org/repo/m2-snapshot-repository/org/apache/camel/ -mtime +7 -exec rm {} \; -find /www/people.apache.org/repo/m2-snapshot-repository/org/apache/servicemix/ -mtime +7 -exec rm {} \; +find /www/people.apache.org/repo/m2-snapshot-repository/org/apache/activemq/ -type f -mtime +7 -exec rm {} \; +find /www/people.apache.org/repo/m2-snapshot-repository/org/apache/camel/ -type f -mtime +7 -exec rm {} \; +find /www/people.apache.org/repo/m2-snapshot-repository/org/apache/servicemix/ -type f -mtime +7 -exec rm {} \;