-
-
Notifications
You must be signed in to change notification settings - Fork 11.3k
Conversation
@@ -122,6 +122,8 @@ def install(options = {}) | |||
puts "Tapped #{formula_count} formula#{plural(formula_count, "e")} (#{@path.abv})" | |||
Descriptions.cache_formulae(formula_names) | |||
|
|||
link |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's better to put it before puts "Tapped...
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
@xu-cheng comments addressed. |
(path/"man").find do |src| | ||
next if src.directory? | ||
dst = HOMEBREW_PREFIX/src.relative_path_from(path) | ||
dst.delete if dst.exist? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to check the dst is a symlink pointed to this tap. Also we need to remove dir if possible.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
A blocker for Homebrew/homebrew-cask#15381 being merged.
👍 |
Fixed conflicts, used |
A blocker for Homebrew/homebrew-cask#15381 being merged.