From ca2177d93727cdc077bf048656fa3eb86c2024b5 Mon Sep 17 00:00:00 2001 From: "kiloconnect[bot]" <240665456+kiloconnect[bot]@users.noreply.github.com> Date: Thu, 9 Apr 2026 12:17:35 +0000 Subject: [PATCH] fix(cli): move kilocode_change marker to cover all changed lines --- packages/opencode/src/config/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/opencode/src/config/config.ts b/packages/opencode/src/config/config.ts index fe5d372616..8bd87b5321 100644 --- a/packages/opencode/src/config/config.ts +++ b/packages/opencode/src/config/config.ts @@ -1614,8 +1614,8 @@ export namespace Config { for (let i = 0; i < data.plugin.length; i++) { const plugin = data.plugin[i] try { - const resolved = import.meta.resolve!(plugin, options.path) // kilocode_change start: on Windows, import.meta.resolve may return a bare path without file:// prefix + const resolved = import.meta.resolve!(plugin, options.path) data.plugin[i] = resolved.startsWith("file://") ? resolved : pathToFileURL(resolved).href // kilocode_change end } catch (e) {