File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tooling/hibernate-gradle-plugin Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -178,12 +178,12 @@ gradle.taskGraph.whenReady { tg ->
178
178
// and then the `gradle.publish.key` / `gradle.publish.secret` combo (project prop)
179
179
// - see https://docs.gradle.org/current/userguide/publishing_gradle_plugins.html#account_setup
180
180
if ( System . getenv(). get(" GRADLE_PUBLISH_KEY" ) != null ) {
181
- if ( System . getenv(). get(" GRADLE_PUBLISH_SECRET" ) ! = null ) {
181
+ if ( System . getenv(). get(" GRADLE_PUBLISH_SECRET" ) = = null ) {
182
182
throw new RuntimeException ( " `GRADLE_PUBLISH_KEY` specified, but not `GRADLE_PUBLISH_SECRET` for publishing Gradle plugin" )
183
183
}
184
184
}
185
185
else if ( project. findProperty( ' gradle.publish.key' ) != null ) {
186
- if ( project. findProperty( ' gradle.publish.secret' ) ! = null ) {
186
+ if ( project. findProperty( ' gradle.publish.secret' ) = = null ) {
187
187
throw new RuntimeException ( " `gradle.publish.key` specified, but not `gradle.publish.secret` for publishing Gradle plugin" )
188
188
}
189
189
}
You can’t perform that action at this time.
0 commit comments