Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
lima-vm
GitHub Repository: lima-vm/lima
Path: blob/master/pkg/instance/start_windows.go
2611 views
1
// SPDX-FileCopyrightText: Copyright The Lima Authors
2
// SPDX-License-Identifier: Apache-2.0
3
4
package instance
5
6
import (
7
"errors"
8
"os/exec"
9
)
10
11
func execHostAgentForeground(_ string, _ *exec.Cmd) error {
12
return errors.New("`limactl start --foreground` is not supported on Windows")
13
}
14
15