From 324a30e679b6deeb3063d80f09ecaee93f4caa09 Mon Sep 17 00:00:00 2001 From: "kilo-maintainer[bot]" Date: Thu, 12 Feb 2026 08:01:36 +0000 Subject: [PATCH] chore: generate --- .github/workflows/publish.yml | 2 +- packages/opencode/src/session/instruction.ts | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2401726a374..2c4241f4eaf 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -272,4 +272,4 @@ jobs: AUR_KEY: ${{ secrets.AUR_KEY }} GITHUB_TOKEN: ${{ steps.committer.outputs.token }} NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - NPM_CONFIG_PROVENANCE: true \ No newline at end of file + NPM_CONFIG_PROVENANCE: true diff --git a/packages/opencode/src/session/instruction.ts b/packages/opencode/src/session/instruction.ts index e620a8502e9..dcb79ce54ca 100644 --- a/packages/opencode/src/session/instruction.ts +++ b/packages/opencode/src/session/instruction.ts @@ -33,9 +33,7 @@ async function resolveRelative(instruction: string): Promise { return Filesystem.globUp(instruction, Instance.directory, Instance.worktree).catch(() => []) } if (!Flag.KILO_CONFIG_DIR) { - log.warn( - `Skipping relative instruction "${instruction}" - no KILO_CONFIG_DIR set while project config is disabled`, - ) + log.warn(`Skipping relative instruction "${instruction}" - no KILO_CONFIG_DIR set while project config is disabled`) return [] } return Filesystem.globUp(instruction, Flag.KILO_CONFIG_DIR, Flag.KILO_CONFIG_DIR).catch(() => [])