This commit is contained in:
Rai (Michael Pokorny)
2025-06-24 19:13:50 -07:00
parent 9670cfdef8
commit 3d68ba3e06

View File

@@ -44,7 +44,7 @@ def status():
branch_exists = 'Y' if branches and branches[0].strip() else 'N'
merged = 'N'
if branch_exists == 'Y':
bname = branches[0].lstrip('*+ ').strip()
bname = branches[0].lstrip('*+ ').strip()
merged = 'Y' if subprocess.run(
['git', 'merge-base', '--is-ancestor', bname, 'agentydragon'],
cwd=root