Skip to content
This repository has been archived by the owner on Dec 3, 2024. It is now read-only.

Commit

Permalink
Update how the release store file is set
Browse files Browse the repository at this point in the history
  • Loading branch information
adamszewe committed Dec 28, 2023
1 parent c9913ab commit a75496d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ android {

signingConfigs {
create("release") {
storeFile = file(System.getenv("SYNCTHING_RELEASE_STORE_FILE"))
storeFile = System.getenv("SYNCTHING_RELEASE_STORE_FILE")?.let(::file)
storePassword = System.getenv("SIGNING_PASSWORD")
keyAlias = System.getenv("SYNCTHING_RELEASE_KEY_ALIAS")
keyPassword = System.getenv("SIGNING_PASSWORD")
Expand Down

0 comments on commit a75496d

Please sign in to comment.