Skip to content

Commit b04ab5f

Browse files
Fix missing err check
1 parent a88bbba commit b04ab5f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pkg/issue.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ func StartWorkingOnIssue(config IssuectlConfig, issueID IssueID) error {
4444
return err
4545
}
4646
generatedBranchName, err := getBranchName(config, issueBackend, profile, issueID)
47+
if err != nil {
48+
return err
49+
}
4750
branchName = generatedBranchName
4851
}
4952

0 commit comments

Comments
 (0)