aboutsummaryrefslogtreecommitdiffstats
path: root/client/go/internal/util/execvp_windows.go
blob: d01eda589ff148a1a9c20162f022500fbab2effc (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 Vespa.ai. 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)
}