Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion environment/vm/lima/lima.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ func New(host environment.HostActions) environment.VM {
var envs []string
envHome := limautil.EnvLimaHome + "=" + limaHome
envLimaInstance := envLimaInstance + "=" + config.CurrentProfile().ID
envSSHForward := "LIMA_SSH_PORT_FORWARDER=true"
envBinary := osutil.EnvColimaBinary + "=" + osutil.Executable()
envs = append(envs, envHome, envLimaInstance, envBinary)
envs = append(envs, envHome, envLimaInstance, envSSHForward, envBinary)

// consider making this truly flexible to support other VMs
return &limaVM{
Expand Down
Loading