Skip to content

Commit

Permalink
Merge pull request #176 from Nexters/feature/SCRUM-112-baseurl
Browse files Browse the repository at this point in the history
[SCRUM-112] BaseUrl이 BuildType에 맞게 들어갈 수 있게 수정
  • Loading branch information
lee-ji-hoon authored Feb 2, 2025
2 parents f1f5914 + 3a0f4bb commit 3467395
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ internal fun Project.configureSecret() {
val releasePropertiesName = "release.secrets.properties"
val debugPropertiedName = "debug.secrets.properties"
extensions.configure<SecretsPluginExtension> {
propertiesFileName = releasePropertiesName
defaultPropertiesFileName = debugPropertiedName
val isDebug = project.gradle.startParameter.taskNames.any { it.contains("Debug", ignoreCase = true) }
propertiesFileName = if (isDebug) debugPropertiedName else releasePropertiesName
ignoreList.add("keyToIgnore")
ignoreList.add("sdk.*")
}
Expand Down

0 comments on commit 3467395

Please sign in to comment.