mirror of
https://gitee.com/ineo6/homebrew-install.git
synced 2025-04-06 03:58:05 +08:00
11 lines
427 B
Ruby
Executable File
11 lines
427 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://cdn.jsdelivr.net/gh/ineo6/homebrew-install/uninstall.sh)"
|
|
|
|
EOS
|
|
|
|
Kernel.exec "/bin/bash", "-c", '/bin/bash -c "$(curl -fsSL https://cdn.jsdelivr.net/gh/ineo6/homebrew-install/uninstall.sh)"' + ' uninstall ' + ARGV.join(" ")
|