We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4151887 commit 8c876bcCopy full SHA for 8c876bc
project/Common.scala
@@ -19,7 +19,7 @@ object Common {
19
20
private val defaultConfig = ConfigFactory.parseFile(file("project/build-defaults.conf"))
21
private val configFile = sys.props.get("config.file").getOrElse("build.conf")
22
- val buildConfig = ConfigFactory.parseFile(file(configFile)).withFallback(defaultConfig)
+ val buildConfig = ConfigFactory.load(ConfigFactory.parseFile(file(configFile))).withFallback(defaultConfig)
23
24
def loadLangProperties(f: File, prefix: String, group: String) : LangStrings = {
25
val p = new Properties()
0 commit comments