mirror of
https://gitee.com/ineo6/homebrew-install.git
synced 2025-04-05 06:12:44 +08:00
11 lines
441 B
Ruby
Executable File
11 lines
441 B
Ruby
Executable File
#!/usr/bin/ruby
|
|
|
|
STDERR.print <<EOS
|
|
Warning: The Ruby Homebrew uninstaller is now deprecated and has been rewritten in
|
|
Bash. Please migrate to the following command:
|
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall.sh)"
|
|
|
|
EOS
|
|
|
|
Kernel.exec "/bin/bash", "-c", '/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall.sh)"' + ' uninstall ' + ARGV.join(" ")
|