Return-Path: X-Original-To: apmail-aurora-commits-archive@minotaur.apache.org Delivered-To: apmail-aurora-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9A58218329 for ; Tue, 15 Dec 2015 01:10:14 +0000 (UTC) Received: (qmail 88988 invoked by uid 500); 15 Dec 2015 01:10:14 -0000 Delivered-To: apmail-aurora-commits-archive@aurora.apache.org Received: (qmail 88949 invoked by uid 500); 15 Dec 2015 01:10:14 -0000 Mailing-List: contact commits-help@aurora.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@aurora.apache.org Delivered-To: mailing list commits@aurora.apache.org Received: (qmail 88940 invoked by uid 99); 15 Dec 2015 01:10:14 -0000 Received: from Unknown (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Dec 2015 01:10:14 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 092E7180456 for ; Tue, 15 Dec 2015 01:10:14 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.446 X-Spam-Level: X-Spam-Status: No, score=0.446 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-0.554] autolearn=disabled Received: from mx1-eu-west.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id sF0i6okMv8m5 for ; Tue, 15 Dec 2015 01:10:12 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-eu-west.apache.org (ASF Mail Server at mx1-eu-west.apache.org) with ESMTP id 0904520EBA for ; Tue, 15 Dec 2015 01:10:12 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 21FAFE0044 for ; Tue, 15 Dec 2015 01:10:11 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id C4C303A0424 for ; Tue, 15 Dec 2015 01:10:10 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1720058 - /aurora/site/Rakefile Date: Tue, 15 Dec 2015 01:10:10 -0000 To: commits@aurora.apache.org From: wfarner@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20151215011010.C4C303A0424@svn01-us-west.apache.org> Author: wfarner Date: Tue Dec 15 01:10:10 2015 New Revision: 1720058 URL: http://svn.apache.org/viewvc?rev=1720058&view=rev Log: Only extract the docs subdirectory of the git archive. Modified: aurora/site/Rakefile Modified: aurora/site/Rakefile URL: http://svn.apache.org/viewvc/aurora/site/Rakefile?rev=1720058&r1=1720057&r2=1720058&view=diff ============================================================================== --- aurora/site/Rakefile (original) +++ aurora/site/Rakefile Tue Dec 15 01:10:10 2015 @@ -79,7 +79,7 @@ task :generate_docs, [:title, :git_tag] if File.exist?(archive_root) puts 'Skipping extraction' else - system("unzip #{zip_name}") + system("unzip #{zip_name} '#{archive_root}/docs/*'") end }