Skip to main content

Gradle $TERM not set

Configuration Solution

You can fix this error by setting the variable prior to running Gradle. Here is an example:

- run:
    name: Run build
    command:  export TERM=${TERM:-dumb} && ./gradlew clean build
Did this answer your question?