aboutsummaryrefslogtreecommitdiffstats
path: root/client/go/internal/util/execvp_windows.go
blob: 24b67e221c88cfd5b4d782bb4a7e6dc80d81aa7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// Author: arnej

//go:build windows

package util

import (
	"fmt"
)

func Execvp(prog string, argv []string) error {
	return fmt.Errorf("cannot execvp on windows: %s", prog)
}

func Execvpe(prog string, argv []string, envv []string) error {
	return fmt.Errorf("cannot execvp on windows: %s", prog)
}

func Execve(prog string, argv []string, envv []string) error {
	return fmt.Errorf("cannot execvp on windows: %s", prog)
}