Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Commit

Permalink
Merge pull request #110 from d4rken/pr-fixreleasebuildscript
Browse files Browse the repository at this point in the history
Buildscripts are hard. Fixed faulty gradle code.
  • Loading branch information
d4rken committed Aug 4, 2017
2 parents 0f2a899 + 28d3292 commit ffc6980
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ def gitSha() {
}

android {
if (new File(System.properties['user.home'], ".signing/reddit-android-appstore/signing.properties").canRead()) {
def signingPropFile = new File(System.properties['user.home'], ".signing/reddit-android-appstore/signing.properties")
if (signingPropFile.canRead()) {
def Properties signingProps = new Properties()
signingProps.load(new FileInputStream(signingPropFile))
signingConfigs {
Expand Down

0 comments on commit ffc6980

Please sign in to comment.