Apktool/scripts/travis-ci/run-tests.sh
2019-02-16 18:01:38 -05:00

10 lines
226 B
Bash
Executable File

#!/usr/bin/env sh
if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then
export PATH=$PATH:"/c/Program Files/Java/jdk1.8.0_201/bin"
./gradlew.bat build shadowJar proguard
else
./gradlew build shadowJar proguard
fi
exit $?