This commit is contained in:
Michael Yang
2025-11-18 14:07:58 -08:00
parent f01c83ed6d
commit 4d24d8a77d
22 changed files with 58 additions and 91 deletions

View File

@@ -543,12 +543,12 @@ func (d DeviceInfo) updateVisibleDevicesEnv(env map[string]string) {
}
v, existing := env[envVar]
if existing {
v = v + ","
v += ","
}
if d.FilterID != "" {
v = v + d.FilterID
v += d.FilterID
} else {
v = v + d.ID
v += d.ID
}
env[envVar] = v
}