Skip to content

Commit 8c876bc

Browse files
committed
Make sure config is resolved
1 parent 4151887 commit 8c876bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

project/Common.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ object Common {
1919

2020
private val defaultConfig = ConfigFactory.parseFile(file("project/build-defaults.conf"))
2121
private val configFile = sys.props.get("config.file").getOrElse("build.conf")
22-
val buildConfig = ConfigFactory.parseFile(file(configFile)).withFallback(defaultConfig)
22+
val buildConfig = ConfigFactory.load(ConfigFactory.parseFile(file(configFile))).withFallback(defaultConfig)
2323

2424
def loadLangProperties(f: File, prefix: String, group: String) : LangStrings = {
2525
val p = new Properties()

0 commit comments

Comments
 (0)