diff --git a/src/main/services/team/TeamRuntimeLivenessResolver.ts b/src/main/services/team/TeamRuntimeLivenessResolver.ts index 553d7b82..8f88ba51 100644 --- a/src/main/services/team/TeamRuntimeLivenessResolver.ts +++ b/src/main/services/team/TeamRuntimeLivenessResolver.ts @@ -168,6 +168,7 @@ export function commandArgEquals( const normalizedExpected = expected?.trim(); if (!normalizedExpected) return false; if (!command.includes(argName)) return false; + if (!command.includes(normalizedExpected)) return false; const cached = getCachedCliArgEquals(command, argName, normalizedExpected); if (cached !== undefined) { return cached;