-
Notifications
You must be signed in to change notification settings - Fork 14
Closed
Description
First, thanks a lot for working on this
Line 71 in e32889d
for limavm in $(limactl list | grep -v 'NAME STATUS SSH ARCH DIR' | awk '{ print $1 }') |
The grep above doesn't seem robust, and will probably break soon with a future version of Lima.
I'd suggest using limactl list --json
and use jq
for parsing JSON.
$ limactl list --json | jq .
{
"name": "default",
"status": "Running",
"dir": "/Users/suda/.lima/default",
"arch": "x86_64",
"sshLocalPort": 60022,
"hostAgentPID": 1968,
"qemuPID": 1972
}
Metadata
Metadata
Assignees
Labels
No labels