Use ... instead of ellipsis and only output if TTY.

This commit is contained in:
Markus Reiter 2018-05-17 18:56:46 +02:00
parent b4de801a01
commit c623b0295c

View File

@ -22,13 +22,13 @@ module CaskTapMigration
new_path = path new_path = path
new_remote = default_remote new_remote = default_remote
ohai "Migrating Tap #{old_name} to #{new_name}" ohai "Migrating tap #{old_name} to #{new_name}..." if $stdout.tty?
puts "Moving #{old_path} to #{new_path}" puts "Moving #{old_path} to #{new_path}..." if $stdout.tty?
path.dirname.mkpath path.dirname.mkpath
FileUtils.mv old_path, new_path FileUtils.mv old_path, new_path
puts "Changing remote from #{old_remote} to #{new_remote}" puts "Changing remote from #{old_remote} to #{new_remote}..." if $stdout.tty?
new_path.git_origin = new_remote new_path.git_origin = new_remote
end end
end end