From 87b509bf03bea32c148097b5bf69c02863bb2211 Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Thu, 19 Feb 2026 21:53:17 -0600 Subject: [PATCH] store: Fix: tea CLI requires explicit --repo flag in discord-app-v2 directory --- ...t-repo-flag-in-discord-app-v2-di-1eb775.md | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 graph/fixes/fix-tea-cli-requires-explicit-repo-flag-in-discord-app-v2-di-1eb775.md diff --git a/graph/fixes/fix-tea-cli-requires-explicit-repo-flag-in-discord-app-v2-di-1eb775.md b/graph/fixes/fix-tea-cli-requires-explicit-repo-flag-in-discord-app-v2-di-1eb775.md new file mode 100644 index 00000000000..c75254c8689 --- /dev/null +++ b/graph/fixes/fix-tea-cli-requires-explicit-repo-flag-in-discord-app-v2-di-1eb775.md @@ -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.