Skip to content

Commit

Permalink
android/gradle: check if GPG_PASSWORD defined
Browse files Browse the repository at this point in the history
  • Loading branch information
bbcallen committed Sep 22, 2015
1 parent dd126a6 commit c97c8c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/ijkplayer/tools/gradle-bintray-upload.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ bintray {
name = VERSION_NAME
gpg {
sign = true
passphrase = GPG_PASSWORD
passphrase = project.hasProperty('GPG_PASSWORD') ? GPG_PASSWORD : ''
}
}
}
Expand Down

0 comments on commit c97c8c1

Please sign in to comment.