aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorMads Ager <ager@google.com>2017-05-24 07:54:51 +0200
committerMads Ager <ager@google.com>2017-05-24 07:54:51 +0200
commit677e3007bab3d7b05dc596b5309d6ab4eb966b76 (patch)
treec1160c4c979cc29ed9ac6585778338059af1299d /build.gradle
parent7e5bd72e92445ba11c0ad0d6a969b04c72f06cba (diff)
downloadr8-677e3007bab3d7b05dc596b5309d6ab4eb966b76.tar.gz
Make it more likely that running the createArtTests gradle task will work on Windows.
I was a bit fast in landing the last change. It seems better to use python as the executable with the script as the argument. I find it more likely that that will work on Windows. Change-Id: Ic380ba1efcf806f9523944773304a82e21c33c6d
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index 37745576e..d33a12758 100644
--- a/build.gradle
+++ b/build.gradle
@@ -300,7 +300,7 @@ task createArtTests(type: Exec) {
inputs.file createArtTestsScript
outputs.dir outputDir
dependsOn downloadDeps
- commandLine "${createArtTestsScript}"
+ commandLine "python", createArtTestsScript
workingDir = projectDir
}