Skip to content

Commit a49fd00

Browse files
committed
Fix Build
1 parent 1fb5e44 commit a49fd00

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ fun getProperty(value: String): String {
103103
val localProps = Properties().apply {
104104
load(FileInputStream(localPropertiesFile))
105105
}
106-
localProps.getProperty(value) ?: "sample_val"
106+
localProps.getProperty(value) ?: "\"sample_val\""
107107
} else {
108-
System.getenv(value) ?: "sample_val"
108+
System.getenv(value) ?: "\"sample_val\""
109109
}
110110
}

0 commit comments

Comments
 (0)