From 898d0dc0d9cef6798ac30e6753f0bf5fdf01f04e Mon Sep 17 00:00:00 2001 From: jianglai Date: Wed, 5 Dec 2018 16:49:04 -0800 Subject: [PATCH] Make gradlew executable in Travis ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=224244963 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ecf07dfd0..879ab3d2c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,4 +37,4 @@ env: # directory. # The "travis_wait 45" lets our build spend up to 45 minutes without writing # output, instead of the default 10. -script: cd gradle && travis_wait 45 ./gradlew build +script: cd gradle && chmod 755 ./gradlew && travis_wait 45 ./gradlew build