aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/unlink.rb
diff options
context:
space:
mode:
authorJack Nagel2014-04-08 13:54:22 -0500
committerJack Nagel2014-04-08 13:54:53 -0500
commit9f3a74096db2a522a2d5933a6607b6dba5e87a32 (patch)
treed28fa27adaddfd0457e2c79c0e9b311f2edb8f4e /Library/Homebrew/cmd/unlink.rb
parentb63fb8d086e2243149bc2feea7600d570cde514f (diff)
downloadbrew-9f3a74096db2a522a2d5933a6607b6dba5e87a32.tar.bz2
unlink: prefer "symlinks" since that's how it is reported by link
cf. Homebrew/homebrew#28244.
Diffstat (limited to 'Library/Homebrew/cmd/unlink.rb')
-rw-r--r--Library/Homebrew/cmd/unlink.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/unlink.rb b/Library/Homebrew/cmd/unlink.rb
index c633126f7..a8e98d8d5 100644
--- a/Library/Homebrew/cmd/unlink.rb
+++ b/Library/Homebrew/cmd/unlink.rb
@@ -6,7 +6,7 @@ module Homebrew extend self
keg.lock do
print "Unlinking #{keg}... "
puts if ARGV.verbose?
- puts "#{keg.unlink} links removed"
+ puts "#{keg.unlink} symlinks removed"
end
end
end