Skip to content

Commit fae1cd0

Browse files
committed
Fix error message
1 parent c9c47e3 commit fae1cd0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Rakefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,9 @@ desc "Build #{Bundler::GemHelper.gemspec.full_name} and move it to local ruby/ru
103103
namespace :build do
104104
task local_ruby: :build do
105105
target = File.join("..", "ruby", "gems")
106+
106107
unless File.directory?(target)
107-
abort("Expected ruby to be cloned at the same level as #{Bundler::GemHelper.gemspec.full_name} to use this task")
108+
abort("Expected Ruby to be cloned under the same parent directory as RDoc to use this task")
108109
end
109110

110111
mv("#{path}.gem", target)

0 commit comments

Comments
 (0)