Repository: spark Updated Branches: refs/heads/master 96bf468c7 -> f73379be2
[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/f73379be Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/f73379be Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/f73379be Branch: refs/heads/master Commit: f73379be2b0c286957b678a996cb56afc96015eb Parents: 96bf468 Author: Josh Rosen <[email protected]> Authored: Mon Nov 30 17:15:47 2015 -0800 Committer: Josh Rosen <[email protected]> Committed: Mon Nov 30 18:25:59 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/f73379be/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: [email protected] For additional commands, e-mail: [email protected]
