Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-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 89BD410E12 for ; Tue, 23 Jul 2013 18:16:37 +0000 (UTC) Received: (qmail 7772 invoked by uid 500); 23 Jul 2013 18:16:37 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 7708 invoked by uid 500); 23 Jul 2013 18:16:36 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 7701 invoked by uid 99); 23 Jul 2013 18:16:36 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Jul 2013 18:16:36 +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; Tue, 23 Jul 2013 18:16:32 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id BE7ED2388A33; Tue, 23 Jul 2013 18:16:11 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1506195 - /cordova/site/README.md Date: Tue, 23 Jul 2013 18:16:11 -0000 To: commits@cordova.apache.org From: agrieve@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20130723181611.BE7ED2388A33@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: agrieve Date: Tue Jul 23 18:16:11 2013 New Revision: 1506195 URL: http://svn.apache.org/r1506195 Log: [CB-4360] Use rsync to update docs instead of cp Modified: cordova/site/README.md Modified: cordova/site/README.md URL: http://svn.apache.org/viewvc/cordova/site/README.md?rev=1506195&r1=1506194&r2=1506195&view=diff ============================================================================== --- cordova/site/README.md (original) +++ cordova/site/README.md Tue Jul 23 18:16:11 2013 @@ -52,8 +52,7 @@ How to update the docs $ ./bin/generate # copy the rendered docs from `cordova-docs` to `cordova-website` - $ rm -r /path/to/cordova-website/public/docs - $ cp -r /path/to/cordova-docs/public/ /path/to/cordova-website/public/docs + $ rsync -av --exclude='.svn*' public/ ../site/public/docs # update the "Documentation" URL on the site to point to the latest version of the docs $ vi _config.yml @@ -63,7 +62,6 @@ How to update the docs # compile the site per the instructions above, since the URL to the docs changed thus the page needs to be re-generated # commit your changes to SVN - $ svn add public/docs/ $ svn commit -m "Add docs version 2.5.0."