From 9312cb39361e08f17249b5cb179897a54a4d1880 Mon Sep 17 00:00:00 2001 From: mmuller Date: Thu, 8 Nov 2018 04:44:56 -0800 Subject: [PATCH] Don't use gradlew from travis Since we're explicitly downloading a version of travis anyway, just run that and don't bother with creating gradlew which does nothing but download the same version over again. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=220618139 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index eb0915070..394f23414 100644 --- a/.travis.yml +++ b/.travis.yml @@ -42,4 +42,4 @@ install: # directory. # The "travis_wait 45" lets our build spend up to 45 minutes without writing # output, instead of the default 10. -script: cd gradle && ../gradle-4.10.2/bin/gradle wrapper && travis_wait 45 ./gradlew build +script: cd gradle && travis_wait 45 ../gradle-4.10.2/bin/gradle build