最近从Windows迁移到MacOS(El Capitan),因此在编译项目时遇到了麻烦。
sh gradlew stage
输出:
: command not found
: command not found
: command not found
: command not found
: command not found
'radlew: line 18: syntax error near unexpected token `{
'radlew: line 18: `warn ( ) {
我已经安装了IntelliJ Idea IDE,安装了Java,我是否在MacOS上进行了任何其他设置? 我的最终目标是在Heroku上部署我的项目,现在我甚至无法编译项目..所以任何帮助都将不胜感激。
答案 0 :(得分:3)
Gradle Wrapper文件gradlew
本身就是一个bash脚本。您可以通过./gradlew stage
执行Gradle命令。
答案 1 :(得分:0)