2
0

Fix gradle build with missing local.properties.

This commit is contained in:
Maarten Billemont
2017-09-21 10:32:38 -04:00
parent 05a9ba46d0
commit 6e2289994c
5 changed files with 8 additions and 9 deletions

View File

@@ -1,7 +1,10 @@
rootProject.name = 'masterpassword'
def local = new Properties();
local.load(file('local.properties').newDataInputStream())
try {
local.load(file('local.properties').newDataInputStream())
} catch (FileNotFoundException ignored) {
}
include 'masterpassword-algorithm'
project(':masterpassword-algorithm').projectDir = new File( '../core/java/algorithm' )