Skip to content

Commit f6c5d36

Browse files
committed
fix '(' error
1 parent 7552cbe commit f6c5d36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/groovy/org/quanqi/gradle/signing/AndroidApplicationSigning.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class AndroidApplicationSigning implements Plugin<Project> {
2121
if(file.absolute) {
2222
return path
2323
} else {
24-
return new File(System.getProperty('user.home', '.android_keys/' + path)).absolutePath
24+
return new File(System.getProperty('user.home'), '.android_keys/' + path).absolutePath
2525
}
2626
}
2727
}

0 commit comments

Comments
 (0)