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 5a893f3 commit af05237Copy full SHA for af05237
scripts/release.main.kts
@@ -245,8 +245,8 @@ fun setVersionInIntelliJPlugin(version: String) {
245
}
246
247
fun setVersionInFixtures(nextSnapshot: String) {
248
- for (file in File("tests/integration-tests/testFixtures").walk()) {
249
- if (file.isDirectory || !file.name.endsWith(".json")) continue
+ for (file in File("tests/integration-tests").walk()) {
+ if (file.isDirectory || !file.name.endsWith(".json") && !file.name.endsWith(".kt")) continue
250
val content = file.readText()
251
.replace(Regex("""\{"name":"apollo-kotlin","version":"(.+)"\}""")) {
252
"""{"name":"apollo-kotlin","version":"$nextSnapshot"}"""
0 commit comments