Skip to content

Commit

Permalink
core: retain SSH port forwarder
Browse files Browse the repository at this point in the history
Signed-off-by: Abiola Ibrahim <[email protected]>
  • Loading branch information
abiosoft committed Nov 6, 2024
1 parent 3ab92f5 commit a244d0a
Showing 1 changed file with 2 additions and 1 deletion.
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

0 comments on commit a244d0a

Please sign in to comment.