25 lines
436 B
Ruby
Raw Normal View History

2020-11-25 17:03:23 +01:00
# typed: true
# frozen_string_literal: true
2019-04-17 18:25:08 +09:00
require "cli/parser"
module Homebrew
2020-10-20 12:03:48 +02:00
extend T::Sig
2016-09-26 01:44:51 +02:00
module_function
2020-10-20 12:03:48 +02:00
sig { returns(CLI::Parser) }
def mirror_args
Homebrew::CLI::Parser.new do
description <<~EOS
Reupload the stable URL of a formula for use as a mirror.
2018-09-28 21:39:52 +05:30
EOS
hide_from_man_page!
end
end
def mirror
odisabled "`brew mirror` (Bintray was shut down on 1st May 2021)"
end
end