我在Mac中使用Packages工具创建了一个.pkg。包含用于安装HomeBrew的preScript并显示错误不要以root身份运行它。 包含的脚本是:
#!/bin/sh
if test ! $(which brew); then
echo "Installing homebrew..."
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
答案 0 :(得分:0)
脚本看起来很好。按照错误尝试以普通用户身份运行,而不是root用户。另外,请在脚本之前避免sudo
。