mirror of
https://gitee.com/ineo6/homebrew-install.git
synced 2025-04-05 06:12:44 +08:00
11 lines
387 B
Ruby
Executable File
11 lines
387 B
Ruby
Executable File
#!/usr/bin/ruby
|
|
|
|
STDERR.print <<EOS
|
|
Warning: The Ruby Homebrew installer 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/install.sh)"
|
|
|
|
EOS
|
|
|
|
Kernel.exec "/bin/bash", "-c", '/bin/bash -c "$(curl -fsSL https://cdn.jsdelivr.net/gh/ineo6/homebrew-install/install.sh)"'
|