From 2a3af7fdca1b0ee972361f9baf5ee84f3f3ede3c Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Wed, 27 Mar 2013 09:17:53 -0400 Subject: [PATCH] Docs: disable publishing for a project by overriding publishLocal to do nothing instead of deliver --- src/sphinx/Detailed-Topics/Macro-Projects.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sphinx/Detailed-Topics/Macro-Projects.rst b/src/sphinx/Detailed-Topics/Macro-Projects.rst index 0cc3ebc4c..1446d1117 100644 --- a/src/sphinx/Detailed-Topics/Macro-Projects.rst +++ b/src/sphinx/Detailed-Topics/Macro-Projects.rst @@ -142,13 +142,13 @@ For example, the `main` Project definition above would now look like: You may wish to disable publishing the macro implementation. -This is done by overriding `publish` and `deliver` to do nothing: +This is done by overriding `publish` and `publishLocal` to do nothing: :: lazy val macroSub = Project("macro", file("macro")) settings( publish := {}, - deliver := {} + publishLocal := {} ) The techniques described here may also be used for the common interface described in the previous section.