From 9980327863985c03c79811fcda870c8fd444794e Mon Sep 17 00:00:00 2001 From: nrslib <38722970+nrslib@users.noreply.github.com> Date: Sun, 1 Feb 2026 17:56:58 +0900 Subject: [PATCH] =?UTF-8?q?workflow=E3=81=8Cbuiltin=E5=84=AA=E5=85=88?= =?UTF-8?q?=E3=81=AB=E3=81=AA=E3=81=A3=E3=81=A6=E3=81=84=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/commands/workflow.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/workflow.ts b/src/commands/workflow.ts index b18e487..1fd3e8a 100644 --- a/src/commands/workflow.ts +++ b/src/commands/workflow.ts @@ -2,7 +2,7 @@ * Workflow switching command */ -import { listWorkflows, loadWorkflow, getBuiltinWorkflow } from '../config/index.js'; +import { listWorkflows, loadWorkflow } from '../config/index.js'; import { getCurrentWorkflow, setCurrentWorkflow } from '../config/paths.js'; import { info, success, error } from '../utils/ui.js'; import { selectOption } from '../prompt/index.js'; @@ -48,7 +48,7 @@ export async function switchWorkflow(cwd: string, workflowName?: string): Promis } // Check if workflow exists - const config = getBuiltinWorkflow(workflowName) || loadWorkflow(workflowName, cwd); + const config = loadWorkflow(workflowName, cwd); if (!config) { error(`Workflow "${workflowName}" not found`);