cocos2d 2.0-rc1 模板安装问题

使用./install-templates.sh -f 命令进行安装cocos2d 2.0-rc1 模板,总是返回以下信息

cocos2d-iphone template installer

Error: Do not run this script as root.

'root' is no longer supported

RECOMMENDED WAY:
 ./install-templates.sh -f

  经过研究发现是以下代码对判断执行用户权限上有问题,总是不能认出我是使用root权限

 

# Make sure root is not executed
if [[ "$(id -u)" == "0" ]]; then
	echo ""
	echo "Error: Do not run this script as root." 1>&2
	echo ""
	echo "'root' is no longer supported" 1>&2
	echo ""
	echo "RECOMMENDED WAY:" 1>&2
	echo " $0 -f" 1>&2
	echo ""
exit 1
fi

 所以把这段判决root权限对脚本代码去掉

 

然后使用命令 sudo sh ./install-templates.sh -f 进行安装,如果出现输入password的话,就输入password,然后就可以正常安装了!

你可能感兴趣的:(cocos2d)