From ac5d2d58c19c4320d557e1a75f52c87c1f646158 Mon Sep 17 00:00:00 2001 From: Blake Watters Date: Tue, 2 Aug 2011 10:15:24 -0400 Subject: [PATCH] Don't fail out `rake docs:install` when Appledoc exits with warning exitstatus --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 8cb52e36..bb3c1dac 100644 --- a/Rakefile +++ b/Rakefile @@ -100,7 +100,7 @@ namespace :docs do desc "Generate & install a docset into Xcode from the current sources" task :install do command = apple_doc_command << " --install-docset Code/" - run(command) + run(command, 1) end desc "Build and upload the documentation set to the remote server"