Skip to content

Commit

Permalink
this time for sure, maybe
Browse files Browse the repository at this point in the history
  • Loading branch information
octoshrimpy committed Feb 26, 2024
1 parent df17d49 commit b7923f2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion presentation/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,10 @@ android {
def keystorePropsFile = rootProject.file('./.gradle/.gradlerc')
storeFile file('./my-release-key.keystore')
keyAlias 'quik_release'
if (keystorePropsFile.exists() && System.getenv("CI") != "true" ) {
if (keystorePropsFile.exists()) {
keystoreProps.load(new FileInputStream(keystorePropsFile))
} else if (System.getenv("CI") == "true") {
// do nothing
} else {
throw new GradleException("Keystore properties file not found.")
}
Expand Down

0 comments on commit b7923f2

Please sign in to comment.