We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 177c51f commit f8a71cdCopy full SHA for f8a71cd
buildSrc/src/main/java/com/google/firebase/gradle/plugins/PublishingPlugin.kt
@@ -191,9 +191,9 @@ abstract class PublishingPlugin : Plugin<Project> {
191
allFirebaseLibraries: List<FirebaseLibraryExtension>
192
): ReleaseMetadata? {
193
val projectsToPublish = project.provideProperty<String>("projectsToPublish").orNull
194
- val releaseName = project.provideProperty<String>("releaseName").orNull
+ val releaseName = project.provideProperty<String>("releaseName").orNull ?: "NO_NAME"
195
196
- if (projectsToPublish == null || releaseName == null) return null
+ if (projectsToPublish == null) return null
197
198
val projectNames = projectsToPublish.split(",")
199
val librariesToRelease =
0 commit comments