Skip to content
Snippets Groups Projects
Commit abf6b6f6 authored by Vlad Shablinsky's avatar Vlad Shablinsky Committed by Mike McQuaid
Browse files

add migrate command for migrating renamed

parent fa8b702c
No related branches found
No related tags found
No related merge requests found
require "migrator"
require "formula_renames"
module Homebrew
def migrate
raise FormulaUnspecifiedError if ARGV.named.empty?
ARGV.resolved_formulae.each do |f|
if f.oldname
unless (rack = HOMEBREW_CELLAR/f.oldname).exist? && !rack.subdirs.empty?
raise NoSuchKegError, f.oldname
end
raise "#{rack} is a symlink" if rack.symlink?
end
migrator = Migrator.new(f)
migrator.migrate
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment