Skip to content

Commit fddf303

Browse files
committed
Merge pull request RestKit#1443 from paulmelnikow/rakefile_appledoc
Rakefile: Prevent 'rake docs' from failing silently when appledoc is not installed
2 parents 8280ddd + 475e7ff commit fddf303

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ task :docs => 'docs:generate'
8181
namespace :appledoc do
8282
task :check do
8383
unless File.exists?('/usr/local/bin/appledoc')
84-
"appledoc not found at /usr/local/bin/appledoc: Install via homebrew and try again: `brew install --HEAD appledoc`"
84+
puts "appledoc not found at /usr/local/bin/appledoc: Install via homebrew and try again: `brew install --HEAD appledoc`"
8585
exit 1
8686
end
8787
end

0 commit comments

Comments
 (0)