Skip to content

Commit fa285e0

Browse files
committed
Updated buildsystem
1 parent 1ece5ec commit fa285e0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

buildsystem

demo/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ dependencies {
8080
task copySecretKey(type: Copy) {
8181
// Search GOOGLE_APPLICATION_CREDENTIALS on internet and ADD the Env Variable on your Machine.
8282
File secretKey = file "$System.env.GOOGLE_APPLICATION_CREDENTIALS"
83-
if (project.ext.isCi || !secretKey.exists()) {
83+
if ((project.hasProperty("isCi") ? project.isCi : false) || !secretKey.exists()) {
8484
secretKey = File.createTempFile('temp', 'file')
8585
secretKey.deleteOnExit()
8686
}

0 commit comments

Comments
 (0)