From 0e8bc365e426d6a2897e05dfb2d8b77f869827b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20Kondratek?= Date: Wed, 13 Dec 2023 10:31:41 +0100 Subject: [PATCH] Update codyCommit to custom (non-main) hash (workaround) (#192) It uses this version of Cody: https://github.com/sourcegraph/cody/pull/2316 It is a workaround for the issue with autocompletion: https://github.com/sourcegraph/jetbrains/issues/191 ## Test plan - runIde - test autocompletion (and accept autocompletion!) - test chat - test sub tab --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 52764734f3..603102c934 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -205,7 +205,7 @@ tasks { return destinationDir } - val codyCommit = "9a47fd26c2b93364781d01fecdbf4f3e9fdd03e4" + val codyCommit = "e789043dbd6225db6236b69d420a5ec0d809893c" fun downloadCody(): File { val url = "https://github.com/sourcegraph/cody/archive/$codyCommit.zip" val destination = githubArchiveCache.resolve("$codyCommit.zip")