[IntelliJ Platform Gradle Plugin] fixed Groovy code snippet

This commit is contained in:
Jakub Chrzanowski 2024-09-19 19:01:34 +02:00
parent 467c384edc
commit d2089024c5
No known key found for this signature in database
GPG Key ID: C39095BFD769862E

View File

@ -1409,10 +1409,10 @@ intellijPlatform {
local file('/path/to/ide/') local file('/path/to/ide/')
recommended() recommended()
select { select {
types = [IntelliJPlatformType.PhpStorm] it.types = [IntelliJPlatformType.PhpStorm]
channels = [ProductRelease.Channel.RELEASE] it.channels = [ProductRelease.Channel.RELEASE]
sinceBuild = '232' it.sinceBuild = '232'
untilBuild = '241.*' it.untilBuild = '241.*'
} }
} }
} }