Gradle home cannot be found on Mac

前端 未结 7 1372
野性不改
野性不改 2021-02-01 13:24

I\'ve installed gradle on MAC using terminal.

brew install gradle

Gradle has been installed successfully.

gradle -v

--         


        
7条回答
  •  死守一世寂寞
    2021-02-01 13:40

    You can retrieve the path for GRADLE_HOME automatically using the following snippet in your .bashrc or .zshrc:

    export GRADLE_HOME=$(brew info gradle | grep /usr/local/Cellar/gradle | awk '{print $1}')
    

    This is handy when the path to Gradle's home changes, when Gradle is updated.

提交回复
热议问题