From fd104f34990be4f1aac7f827b37c9c075e81d181 Mon Sep 17 00:00:00 2001 From: Justin Carter Date: Mon, 9 Mar 2026 14:32:29 -0500 Subject: [PATCH] fix: Correct jira cli command for fetching issues --- src/issue-providers/jira-provider.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/issue-providers/jira-provider.js b/src/issue-providers/jira-provider.js index b5de25b6..212eca6c 100644 --- a/src/issue-providers/jira-provider.js +++ b/src/issue-providers/jira-provider.js @@ -167,7 +167,7 @@ class JiraProvider extends IssueProvider { const issueKey = this._extractIssueKey(identifier, settings); // Fetch issue using jira CLI - const cmd = `jira issue view ${issueKey} --template json`; + const cmd = `jira view ${issueKey} --template json`; const output = execSync(cmd, { encoding: 'utf8' }); const issue = JSON.parse(output);