Skip to content
This repository was archived by the owner on Sep 30, 2024. It is now read-only.

Commit 7d20a90

Browse files
author
Szymon Przebierowski
authored
JetBrains: disable gradle copyAgentBinariesToPluginPath task (#54786)
This disables failing gradle tasks, It's going to be fixed later ## Test plan - Green CI <!-- All pull requests REQUIRE a test plan: https://docs.sourcegraph.com/dev/background-information/testing_principles -->
1 parent 43b637c commit 7d20a90

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

client/jetbrains/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,3 +180,7 @@ tasks {
180180
tasks.test {
181181
useJUnitPlatform()
182182
}
183+
184+
tasks.getByName("copyAgentBinariesToPluginPath") {
185+
enabled = false
186+
}

client/jetbrains/src/main/java/com/sourcegraph/cody/agent/CodyAgentServer.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88

99
/**
1010
* Interface for the server-part of the Cody agent protocol. The implementation of this interface is
11-
* written in TypeScript in the file "cody/agent/src/agent.ts". The Eclipse LSP4J bindings
12-
* create a Java implementation of this interface by using a JVM-reflection feature called "Proxy",
13-
* which works similar to JavaScript Proxy.
11+
* written in TypeScript in the file "cody/agent/src/agent.ts". The Eclipse LSP4J bindings create a
12+
* Java implementation of this interface by using a JVM-reflection feature called "Proxy", which
13+
* works similar to JavaScript Proxy.
1414
*/
1515
public interface CodyAgentServer {
1616

0 commit comments

Comments
 (0)