mirror of
https://gitee.com/ineo6/homebrew-install.git
synced 2025-04-05 19:41:45 +08:00
11 lines
408 B
Ruby
Executable File
11 lines
408 B
Ruby
Executable File
#!/usr/bin/ruby
|
||
|
||
STDERR.print <<EOS
|
||
Warning: Ruby版本Homebrew安装脚本已被废弃,新版脚本使用Bash重写。
|
||
请使用以下命令:
|
||
/bin/bash -c "$(curl -fsSL https://gitee.com/ineo6/homebrew-install/raw/master/uninstall.sh)"
|
||
|
||
EOS
|
||
|
||
Kernel.exec "/bin/bash", "-c", '/bin/bash -c "$(curl -fsSL https://gitee.com/ineo6/homebrew-install/raw/master/uninstall.sh)"' + ' uninstall ' + ARGV.join(" ")
|