Skip to content

Commit 7ee3318

Browse files
mac-bridge request: mlx-env-probe (nonce 1781249511-2024c6)
Co-authored-by: FluffyAIcode <FluffyAIcode@users.noreply.github.com>
1 parent fe59339 commit 7ee3318

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

.mac-bridge/request.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"schema_version": 1,
3+
"preset": "mlx-env-probe",
4+
"params": {},
5+
"ref": "HEAD",
6+
"requested_by": "cursor-cloud-agent-b876",
7+
"nonce": "1781249511-2024c6"
8+
}

scripts/mac_bridge/kakeya_mac.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,10 @@ def _branch_policy_args() -> list:
5353
if not match:
5454
return []
5555
suffix = match.group(1)
56-
return ["--branch-prefix", "AgentMemory/mac-bridge-",
57-
"--branch-suffix", suffix]
56+
# `=`-joined so argparse never mistakes a leading-dash suffix
57+
# (e.g. "-b876") for an option flag.
58+
return [f"--branch-prefix=AgentMemory/mac-bridge-",
59+
f"--branch-suffix={suffix}"]
5860

5961

6062
def cmd_doctor(_args) -> int:

0 commit comments

Comments
 (0)