Return-Path: X-Original-To: apmail-spark-commits-archive@minotaur.apache.org Delivered-To: apmail-spark-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 DC4D1185A1 for ; Tue, 1 Dec 2015 02:26:56 +0000 (UTC) Received: (qmail 76768 invoked by uid 500); 1 Dec 2015 02:26:56 -0000 Delivered-To: apmail-spark-commits-archive@spark.apache.org Received: (qmail 76732 invoked by uid 500); 1 Dec 2015 02:26:56 -0000 Mailing-List: contact commits-help@spark.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list commits@spark.apache.org Received: (qmail 76723 invoked by uid 99); 1 Dec 2015 02:26:56 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Dec 2015 02:26:56 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id A0693E2C5A; Tue, 1 Dec 2015 02:26:56 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: joshrosen@apache.org To: commits@spark.apache.org Message-Id: <3246912a5d424d749528f52747cfb7db@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: spark git commit: [HOTFIX][SPARK-12000] Add missing quotes in Jekyll API docs plugin. Date: Tue, 1 Dec 2015 02:26:56 +0000 (UTC) Repository: spark Updated Branches: refs/heads/branch-1.6 2fc3fce8a -> 86a46ce68 [HOTFIX][SPARK-12000] Add missing quotes in Jekyll API docs plugin. I accidentally omitted these as part of #10049. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/86a46ce6 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/86a46ce6 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/86a46ce6 Branch: refs/heads/branch-1.6 Commit: 86a46ce686cd140aa9854e2d24cfd3313cd8b894 Parents: 2fc3fce Author: Josh Rosen Authored: Mon Nov 30 17:15:47 2015 -0800 Committer: Josh Rosen Committed: Mon Nov 30 18:26:48 2015 -0800 ---------------------------------------------------------------------- docs/_plugins/copy_api_dirs.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/86a46ce6/docs/_plugins/copy_api_dirs.rb ---------------------------------------------------------------------- diff --git a/docs/_plugins/copy_api_dirs.rb b/docs/_plugins/copy_api_dirs.rb index f2f3e2e..174c202 100644 --- a/docs/_plugins/copy_api_dirs.rb +++ b/docs/_plugins/copy_api_dirs.rb @@ -117,7 +117,7 @@ if not (ENV['SKIP_API'] == '1') puts "Moving to python/docs directory and building sphinx." cd("../python/docs") - system(make html) || raise("Python doc generation failed") + system("make html") || raise("Python doc generation failed") puts "Moving back into home dir." cd("../../") --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org For additional commands, e-mail: commits-help@spark.apache.org