lib/rake/funnel/tasks/bin_path.rb in rake-funnel-0.22.1 vs lib/rake/funnel/tasks/bin_path.rb in rake-funnel-0.22.2
- old
+ new
@@ -27,12 +27,12 @@
yield(*[self, task_args].slice(0, task_block.arity)) if task_block
next unless paths.any?
prepend_pattern_to_path_environment(paths)
- Rake.rake_output_message 'Added the following paths to the PATH environment variable:'
+ $stderr.print "Added the following paths to the PATH environment variable:\n"
paths.each do |p|
- Rake.rake_output_message " - #{p}"
+ $stderr.print " - #{p}\n"
end
end
self
end