store: Fix: tea CLI requires explicit --repo flag in discord-app-v2 directory

This commit is contained in:
Cal Corum 2026-02-19 21:53:17 -06:00
parent bcd4a1fc48
commit 87b509bf03

View File

@ -0,0 +1,26 @@
---
id: 1eb7759d-2fe3-4bf8-824b-13f8c8f1b723
type: fix
title: "Fix: tea CLI requires explicit --repo flag in discord-app-v2 directory"
tags: [major-domo, gitea, tea-cli, fix]
importance: 0.4
confidence: 0.8
created: "2026-02-20T03:53:17.677318+00:00"
updated: "2026-02-20T03:53:17.677318+00:00"
---
# tea CLI requires explicit --repo flag for major-domo-v2
## Problem
`tea pulls create` fails with "path segment [0] is empty" when run from the `discord-app-v2` directory. The tea CLI cannot auto-detect the repo from the git remote URL in this subdirectory.
## Fix
Always pass `--repo cal/major-domo-v2` explicitly when running tea commands from discord-app-v2.
## Example
```bash
tea pulls create --repo cal/major-domo-v2 --head feat/branch --base main --title "Title" --description "Desc"
```
## Applies to
Any `tea` subcommand run from the `discord-app-v2` directory, including `tea pulls list`, `tea issues list`, etc.