mirror of
https://github.com/gosticks/brew.git
synced 2026-08-13 05:00:20 +00:00
language/python: fix Rubocop warnings.
This commit is contained in:
@@ -187,12 +187,11 @@ module Language
|
||||
# Robustify symlinks to survive python3 patch upgrades
|
||||
@venv_root.find do |f|
|
||||
next unless f.symlink?
|
||||
if (rp = f.realpath.to_s).start_with? HOMEBREW_CELLAR
|
||||
python = rp.include?("python3") ? "python3" : "python"
|
||||
new_target = rp.sub %r{#{HOMEBREW_CELLAR}/#{python}/[^/]+}, Formula[python].opt_prefix
|
||||
f.unlink
|
||||
f.make_symlink new_target
|
||||
end
|
||||
next unless (rp = f.realpath.to_s).start_with? HOMEBREW_CELLAR
|
||||
python = rp.include?("python3") ? "python3" : "python"
|
||||
new_target = rp.sub %r{#{HOMEBREW_CELLAR}/#{python}/[^/]+}, Formula[python].opt_prefix
|
||||
f.unlink
|
||||
f.make_symlink new_target
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user