1// SPDX-FileCopyrightText: Copyright The Lima Authors 2// SPDX-License-Identifier: Apache-2.0 3 4package instance 5 6import ( 7 "errors" 8 "os/exec" 9) 10 11func execHostAgentForeground(_ string, _ *exec.Cmd) error { 12 return errors.New("`limactl start --foreground` is not supported on Windows") 13} 14 15